Mercurial > hg > Applications > TreeVNC
view src/main/java/jp/ac/u_ryukyu/treevnc/TreeVNCNode.java @ 269:05f59c18cdca
fix --filterSingleDisplay option
author | oc |
---|---|
date | Tue, 09 Dec 2014 11:08:32 +0900 |
parents | 2b3eb4a9492f |
children | f7210f834403 |
line wrap: on
line source
package jp.ac.u_ryukyu.treevnc; public class TreeVNCNode { String hostname; int port; int treeNum; String localhostname; public TreeVNCNode(String hostname, int port, String localhostname) { this.hostname = hostname; this.port = port; this.localhostname = localhostname; } public int getTreeNum() { return treeNum; } public void setTreeNum(int treeNum) { this.treeNum = treeNum; } public String getHostname() { return hostname; } public int getPort() { return port; } public void setPort(int acceptPort) { port = acceptPort; } public void setHostName(String localhostname) { hostname = localhostname; } }