view src/main/java/jp/ac/u_ryukyu/treevnc/test/TestTextBox.java @ 542:9ed3bfbf81de deployApp tip

make branch
author e165729 <e165729@ie.u-ryukyu.ac.jp>
date Sun, 13 Oct 2019 16:03:36 +0900
parents b3ef6d14b2b7
children
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(null);
	public static void main(String[] args) {
			TestTextBox t = new TestTextBox();
			t.testText();
	}
	
	public void testText() {
		text.checkBox("line");
		text.setButton();
		text.visible();	
	}
}