All Downloads are FREE. Search and download functionalities are using the official Maven repository.

javajs.swing.JTextField Maven / Gradle / Ivy

There is a newer version: 14.31.10
Show newest version

package javajs.swing;

import javajs.util.SB;

public class JTextField extends JComponent {

	public JTextField(String value) {
		super("txtJT");
		text = value;
	}

	@Override
	public String toHTML() {
		SB sb = new SB();
		sb.append("");
		return sb.toString();
	}


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy