Back to project page innovativeproject-meetingdataexchange.
The source code is released under:
MIT License
If you think the Android project innovativeproject-meetingdataexchange listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package dataBase; // www . j a va 2 s . co m public class Server { public Server(String name,String introduceName) { this.name=name; this.introduceName=introduceName; } private String name; private String introduceName; public String getIntroduceName() { return introduceName; } public void setIntroduceName(String introduceName) { this.introduceName = introduceName; } public String getName() { return name; } public void setName(String name) { this.name = name; } }