This is a feature of JBuilder Enterprise.
The Simple API for XML is known as SAX. The SAX Handler wizard generates a template SAX handler implementation. You select the interfaces and methods you want your generated class to handle. The wizard adds the interfaces and methods to the class. The methods added have empty bodies that contain only comments reminding you to add the logic to implement the methods. These comments appear in the To Do
folder in the structure pane.
For complete information about SAX, see http://www.megginson.com/SAX/index.html. To view the API documentation, see http://www.megginson.com/SAX/Java/javadoc/index.html.
To display the SAX Handler wizard, select File|New, click the XML page, and double-click the SAX Handler icon.
Enter a class name for the SAX handler class or accept the default name.
Enter a package name for the SAX handler class or accept the default package the wizard suggests.
Check the check boxes next to the names of the interfaces that contain methods you want to override. For those interfaces you select, expand the node to view the methods in the interface. Check the interface methods that you want to override. To find information about these methods and interfaces, see the API documentation.
This is a feature of JBuilder Enterprise.
Check the related options you wish to use. For documentation about these options, see Features and Properties at http://www.megginson.com/SAX/Java/index.html.
Check the parser options you want.
Once your template SAX handler class is generated, edit the source code and add the logic to implement the selected methods.