JXMLPad - Tutorial

Creating a JSP 1.1 editor

STEP 1: Creating the main class

Version 1.0
http://www.japisoft.com


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();
    }

}


Next Step