Implement Interface Wizard

The Implement Interface Wizard creates an interface framework that consists of interface methods. Interface methods are a group of method declarations which provide basic functionality to classes that share common behavior or needs.

The method signature framework is inserted at the end of the .java source for the class. You need to write the code that implements each method of the framework.

To display the Implement Interface Wizard,

  1. Highlight a .java file in the Navigation pane of the AppBrowser.
  2. Choose Wizards|Implement Interface.
This wizard contains the following fields:

Class

The class you want to implement the interface for. This drop-down lists contains the name of the class selected in the Navigation pane, as well as names of classes defined in that class. This field is not editable; you must choose from the list.

Available Interfaces

The available interfaces. Click the icons in the left column to expand or collapse the list of inherited interfaces.

Choose an interface by clicking it. Then choose the OK button. You can only implement one interface at a time.