Class Property Sheet in the Class Window
See Also
You view the properties of a class in the current debugging session by right-clicking
the class name in the Class window and choosing Properties. A class has the
following properties:
- Class Loader Type. The object that loaded the class into the virtual
machine. The default class loader can locate a class on the local file system.
Other class loaders might load a class from a URL or from inside a database.
- Modifiers. The standard Java language modifiers for the class. Modifiers
are standard keywords that alter the accessibility, behavior, or semantics
of the class. See Modifiers Property
Editor for more information.
- Name. The name of the class.
- Extends. The superclass that the class extends. The public and protected
methods and variables of a superclass can be used by its class.
- Implements. The interfaces that the class implements. Interfaces
are sets of abstract methods that a class can implement to add functionality.
Legal Notices