Back to project page mobile-chat.
The source code is released under:
GNU General Public License
If you think the Android project mobile-chat 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 br.com.etyllica.sonat.server; //from w ww .j a va 2 s. c o m public abstract class ServerImpl implements Server { protected int port; public ServerImpl(int port) { super(); this.port = port; } public int getPort() { return port; } }