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

javajs.swing.JEditorPane Maven / Gradle / Ivy

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

import javajs.util.SB;

/**
 * A simple implementation of a Swing JTextPane. 
 * Operates as its own Document; no attributes
 * 
 * @author hansonr
 *
 */
public class JEditorPane extends JComponent {

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy