Software Engineering “im WiSe18"
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Account.java 303B

12345678910111213141516
  1. public class Account {
  2. public Person owner;
  3. public String email;
  4. Account(Person owner, String email){
  5. this.owner = owner;
  6. this.email = email;
  7. }
  8. public void accountErstellen(Person p, String e_email){
  9. this.owner = p;
  10. this.email = e_email;
  11. }
  12. }