view src/viewer_swing/java/com/glavsoft/viewer/ViewerInterface.java @ 207:b31903e5b02d

rename myRFBProto
author oc
date Wed, 02 Jul 2014 18:14:20 +0900
parents d9d234715853
children 5e3594021e79
line wrap: on
line source

package com.glavsoft.viewer;

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

import jp.ac.u_ryukyu.treevnc.TreeRFBProto;

public interface ViewerInterface extends Runnable {

	public boolean getCuiVersion();

	public TreeRFBProto 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);

	public void setVisible(boolean b);

	public Socket getVNCSocket();

    public boolean getShowTree();

}