
/**
 * Implementation of {@code EmailAccount}.
 * 
 * @author Put your name here
 * 
 */
public final class EmailAccount1 implements EmailAccount {

    /*
     * Private members --------------------------------------------------------
     */

    // TODO - declare static and instance data members

    /*
     * Constructor ------------------------------------------------------------
     */

    /**
     * Constructor.
     * 
     * @param firstName
     *            the first name
     * @param lastName
     *            the last name
     */
    public EmailAccount1(String firstName, String lastName) {

        // TODO - fill in body

    }

    /*
     * Methods ----------------------------------------------------------------
     */

    @Override
    public String name() {

        // TODO - fill in body

    }

    @Override
    public String emailAddress() {

        // TODO - fill in body

    }

    @Override
    public String toString() {

        // TODO - fill in body

    }

}
