Question: Email Class Java 3. Email Class Name: Email.java Create a Email class with the following items: Attributes (private): Domain (part to the right of the
Email Class Java

3. Email Class Name: Email.java Create a Email class with the following items: Attributes (private): Domain (part to the right of the @) Constructors No argument constructor (set the attributes to default values) Constructor that allows the attributes to be set Operations (public): toString0 to return a string representation of the Email in the format localPart@domain (e.g., johndoe@website.com) toAntiSpamString0 to return a string representation of the Email in an anti-spam format (e.g., johndoe at website dot com) .Getters for each attribute Setters for each attribute Add a main) method to the Email class that creates two Email objects, one using the no arg constructor and one using the other constructor. Display the result of both Email object's toString0 methods and toAntiSpaimString0 methods. Example Output: i.11: johndoe@website.com johndoe at website dot com email2: abc 12340@.edu abc12340 at ucmo dot edu
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
