view src/main/java/jp/ac/u_ryukyu/treevnc/test/TestTextBox.java @ 32:758d025ee24b

add TextBox.java
author one
date Mon, 03 Sep 2012 17:34:52 +0900
parents
children
line wrap: on
line source

package jp.ac.u_ryukyu.treevnc.test;

import jp.ac.u_ryukyu.treevnc.client.TextBoxClient;

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