view src/viewer_swing/java/com/glavsoft/viewer/ViewerInterface.java @ 188:f176bffcdc4a

add showTreeNode option.
author oc
date Tue, 24 Jun 2014 16:49:29 +0900
parents c1b91dd27a13
children aa00e4b2fc27
line wrap: on
line source

package com.glavsoft.viewer;

import java.io.IOException;
import java.net.Socket;

import jp.ac.u_ryukyu.treevnc.MyRfbProto;

public interface ViewerInterface extends Runnable {

	public boolean getCuiVersion();

	public MyRfbProto getRfb();

	public void closeApp();

	public void setSocket(Socket soc);

	public void run();

	public void setOpenPort(int parseInt);

	public void setTeminationType(boolean b);

	public void setCuiVersion(boolean flag);

    public void startTreeViewer(String hostName, boolean b);

    public void connectToParenet(int port, String hostname) throws IOException;

    public void inhelitClients(ViewerInterface vncProxyService, String hostName);

    public void proxyStart(String[] args, int width, int height, boolean showTree);

    public void setNoConnection(boolean noConnection);

}