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

javajs.swing.JLabel Maven / Gradle / Ivy

There is a newer version: 14.31.10
Show newest version
package javajs.swing;

import javajs.util.SB;

public class JLabel extends JComponent {

	public JLabel(String text) {
		super("lblJL");
		this.text = text;
	}

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


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy