public class JSPEditor extends JFrame {
// JSPEditor constructor
public JSPEditor() {
// Remove the JXMLPad tree for non
XML content
XMLPadProperties.setProperty(
"tree", "false" );
...
}
// Sample for running it
public static void main( String[] args ) {
new JSPEditor();
}
}