1 package zirc.base ; 2 3 16 23 24 public class Server 25 { 26 private String reseau = "" ; 27 private String nom = "" ; 28 private String adress = "" ; 29 private String port = "" ; 30 31 public Server() 32 { 33 } 34 35 public Server(String _reseau, String _nom, String _adress, String _port) 36 { 37 reseau = _reseau ; 38 nom = _nom ; 39 adress = _adress ; 40 port = _port ; 41 } 42 43 public String toString() 44 { 45 return adress ; 46 } 47 48 public void setReseau(String _reseau) 49 { 50 reseau = _reseau ; 51 } 52 53 public void setNom(String _nom) 54 { 55 nom = _nom ; 56 } 57 58 public void setAdress(String _adress) 59 { 60 adress = _adress ; 61 } 62 63 public void setPort(String _port) 64 { 65 port = _port ; 66 } 67 68 public String getReseau() 69 { 70 return reseau ; 71 } 72 73 public String getNom() 74 { 75 return nom ; 76 } 77 78 public String getAdress() 79 { 80 return adress ; 81 } 82 83 public String getPort() 84 { 85 return port ; 86 } 87 88 } 89 | Popular Tags |