/* ** This file is part of Filius, a network construction and simulation software. ** ** Originally created at the University of Siegen, Institute "Didactics of ** Informatics and E-Learning" by a students' project group: ** members (2006-2007): ** André Asschoff, Johannes Bade, Carsten Dittich, Thomas Gerding, ** Nadja Haßler, Ernst Johannes Klebert, Michell Weyer ** supervisors: ** Stefan Freischlad (maintainer until 2009), Peer Stechert ** Project is maintained since 2010 by Christian Eibl <filius@c.fameibl.de> ** and Stefan Freischlad ** Filius is free software: you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Foundation, either version 2 of the License, or ** (at your option) version 3. ** ** Filius is distributed in the hope that it will be useful, ** but WITHOUT ANY WARRANTY; without even the implied ** warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR ** PURPOSE. See the GNU General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with Filius. If not, see <http://www.gnu.org/licenses/>. */ package filius.software.email; import filius.Main; public class Kontakt { // Attribute private String name; private String vorname; private String strasse; private int hausnr; private int plz; private String wohnort; private String email; private String telefon; // Konstruktor(en) public Kontakt() { Main.debug.println("INVOKED ("+this.hashCode()+") "+getClass()+" (Kontakt), constr: Kontakt()"); } public Kontakt(String emailAdresse) { Main.debug.println("INVOKED ("+this.hashCode()+") "+getClass()+" (Kontakt), constr: Kontakt("+emailAdresse+")"); this.email = emailAdresse; } // Methoden public String getEmail() { return email; } public void setEmail(String email) { this.email = email; } public int getHausnr() { return hausnr; } public void setHausnr(int hausnr) { this.hausnr = hausnr; } public String getName() { return name; } public void setName(String name) { this.name = name; } public int getPlz() { return plz; } public void setPlz(int plz) { this.plz = plz; } public String getStrasse() { return strasse; } public void setStrasse(String strasse) { this.strasse = strasse; } public String getTelefon() { return telefon; } public void setTelefon(String telefon) { this.telefon = telefon; } public String getVorname() { return vorname; } public void setVorname(String vorname) { this.vorname = vorname; } public String getWohnort() { return wohnort; } public void setWohnort(String wohnort) { this.wohnort = wohnort; } }