org.topbraid.core
Interface TBPreferenceConstants

All Known Implementing Classes:
ClassesWithInstanceCountLabelProvider, PreferenceInitializer, PreferencePage, SubClassesTreeView

public interface TBPreferenceConstants

Global constants for various values used in TB.getPreferences(). Note: This needs to be refactored to collect more constants from other plugins.

Author:
Holger Knublauch

Field Summary
static int CLASS_INSTANCES_DEFAULT
          Default option of CLASS_INSTANCES_MODE
static int CLASS_INSTANCES_DIRECT
          Option: Only show direct instance count behind class name, e.g.
static int CLASS_INSTANCES_INDIRECT
          Option: Show instance count including indirect instances behind class name, e.g.
static java.lang.String CLASS_INSTANCES_MODE
          The mode of how to display the number of instances in the classes trees.
static int CLASS_INSTANCES_NONE
          Option: Don't show instance count behind class name, e.g.
static int CLASS_INSTANCES_SEPARATELY
          Option: Show direct and indirect instances separately, e.g.
 

Field Detail

CLASS_INSTANCES_MODE

static final java.lang.String CLASS_INSTANCES_MODE
The mode of how to display the number of instances in the classes trees. The value of this property is an integer (CLASS_INSTANCES_xxx).

See Also:
Constant Field Values

CLASS_INSTANCES_NONE

static final int CLASS_INSTANCES_NONE
Option: Don't show instance count behind class name, e.g. Person

See Also:
Constant Field Values

CLASS_INSTANCES_DIRECT

static final int CLASS_INSTANCES_DIRECT
Option: Only show direct instance count behind class name, e.g. Person (3)

See Also:
Constant Field Values

CLASS_INSTANCES_INDIRECT

static final int CLASS_INSTANCES_INDIRECT
Option: Show instance count including indirect instances behind class name, e.g. Person (5)

See Also:
Constant Field Values

CLASS_INSTANCES_SEPARATELY

static final int CLASS_INSTANCES_SEPARATELY
Option: Show direct and indirect instances separately, e.g. Person (3 + 2)

See Also:
Constant Field Values

CLASS_INSTANCES_DEFAULT

static final int CLASS_INSTANCES_DEFAULT
Default option of CLASS_INSTANCES_MODE

See Also:
Constant Field Values