Creating a nested class

You can create classes that are enclosed in other types (that is, nested classes).
  1. Open the New Java Class wizard.

  2. Edit the Source Folder field to indicate in which folder you want the new class to reside. You can either type a path or click Browse to find the folder. If a folder is found for the current selection, that folder appears in the Source Folder field as the container for the new class.

  3. Select the Enclosing Type check box and type the name of the enclosing type in the Enclosing Type field. You can also click Browse to select the enclosing type for the new class.

  4. In the Name field, type a name for the new class.

  5. Select the desired modifiers by using the Modifiers radio buttons and check boxes.

  6. In the Superclass field, type or click Browse to select a superclass for the new class.

  7. Click the Add button to add interfaces for the new class to implement.

  8. If you want to create some method stubs in the new class:

  9. Click Finish when you are done.

Note: The new class is created in the same compilation unit as its enclosing type.

Related concepts
Java projects

Related tasks
Creating a new Java class
Creating a top-level class
Creating a class in an existing compilation unit

Related reference
New Java Class wizard

Copyright IBM Corporation 2000, 2002. All Rights Reserved.