Element |
Description |
Available Superclass/Interface Methods |
Displays all of the methods inherited from your class' superclasses and implemented interfaces.
The methods are grouped under class nodes (image) and interface nodes (image). You can select one or more
of these nodes to add all of the methods they contain to the Methods That Will Be Overriden window.
You can also double-click these nodes to expand them and select individual methods to be added or removed.
|
Methods That Will Be Overridden |
Lists all the methods you want to override in your class. When select a method to be overridden
in the New wizard, the IDE generates a full implementation of the method in the class' code. The method is
implemented using its default constructors and parameters. You can further customize the method's implementation in Step 6 of the New
wizard.
|
Show Inherited |
If this checkbox is selected, the Available Superclass/Interface Methods window displays an unsorted list
of all methods inherited from the class' superclass and implemented interfaces.
|
Only Show Abstract |
If this checkbox is selected, the Available Superclass/Interface Methods window only lists those inherited methods
that are not implemented somewhere in the class' source heirarchy. These methods include
methods from the class' interfaces and other abstract methods not implemented elsewhere.
Some of the interface methods listed may already be implemented by a superclass.
|
Generate Super Calls |
If this checkbox is selected, each method implementation includes a temporary value that holds the output
of the corresponding superclass method. You can use this variable to quickly insert your own code for working
with the method.
|