view src/main/java/jp/ac/u_ryukyu/treevnc/test/TestTextBox.java @ 206:2b3eb4a9492f

MyRfbProto reorganization
author oc
date Wed, 02 Jul 2014 17:58:55 +0900
parents a6dc674546f2
children b3ef6d14b2b7
line wrap: on
line source

package jp.ac.u_ryukyu.treevnc.test;

import jp.ac.u_ryukyu.treevnc.TreeVncRootSelectionPanel;

public class TestTextBox {
	TreeVncRootSelectionPanel text = new TreeVncRootSelectionPanel();
	public static void main(String[] args) {
			TestTextBox t = new TestTextBox();
			t.testText();
	}
	
	public void testText() {
		text.checkBox("line");
		text.setButton();
		text.visible();	
	}
}