Index

Using the Class Browser

The class browser may be displayed in the left half of an editor window. You'll see a tree that contains all classes which are referred by the project file. The source code of these classes is scanned after every Save command. The class browser ignores inner classes. The rest of the document describes the symbols of the class browser and the action which will performed on double- clicking a node.

Standard Node

Used for node that lead to packages, attributes or methods. Double- clicking this symbol will expand or unexpand the subtree.

Class Node

Used for nodes that represent a class. Double- clicking this symbol will expand or unexpand the subtree.

Invalid Class Node

Used for invalid classes; an error on scanning the source code of the corresponding class will result in a invalid class node. Double- clicking this symbol has no effect.

Public Attribute Node

Used to display public attributes of a class. Double- clicking this symbol will open an editor containing the corresponding source file; the caret will be set to the line where the attribute is defined.

Protected Attribute Node

Used to display protected attributes of a class. Double- clicking this symbol will open an editor containing the corresponding source file; the caret will be set to the line where the attribute is defined.

Private Attribute Node

Used to display private attributes of a class. Double- clicking this symbol will open an editor containing the corresponding source file; the caret will be set to the line where the attribute is defined.

Public Method Node

Used to display public methods of a class. Double- clicking this symbol will open an editor containing the corresponding source file; the caret will be set to the line where the method is defined.

Protected Method Node

Used to display protected methods of a class. Double- clicking this symbol will open an editor containing the corresponding source file; the caret will be set to the line where the method is defined.

Private Method Node

Used to display private methods of a class. Double- clicking this symbol will open an editor containing the corresponding source file; the caret will be set to the line where the method is defined.