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 148B

123456789101112
  1. public class Account {
  2. public Person owner;
  3. public String email;
  4. public void accountErstellen(Person p, String e_email){
  5. }
  6. }