Uses of Class
com.togethersoft.openapi.ide.inspector.IdeInspectorProperty

Packages that use IdeInspectorProperty
com.togethersoft.openapi.ide.inspector 
com.togethersoft.openapi.ide.inspector.util 
com.togethersoft.openapi.ide.inspector.util.editors 
com.togethersoft.openapi.ide.inspector.util.property 
com.togethersoft.openapi.ide.inspector.util.table 

Uses of IdeInspectorProperty in com.togethersoft.openapi.ide.inspector
 

Subclasses of IdeInspectorProperty in com.togethersoft.openapi.ide.inspector
class IdeMultipleInspectorProperty
           Represents InspectorProperty that stores an enumeration of properties.
 

Constructors in com.togethersoft.openapi.ide.inspector with parameters of type IdeInspectorProperty
IdeInspectorSinglePropertyComponent.IdeInspectorSinglePropertyComponent(IdeInspectorProperty property)
           Constructs a new component for specified property.
 

Methods in com.togethersoft.openapi.ide.inspector that return IdeInspectorProperty
IdeInspectorPropertyIdeInspectorPropertySetComponent.findProperty(String name)
           Search for the property specified by it's name.
IdeInspectorProperty[]IdeInspectorPropertySetComponent.getProperties()
           Returns all properties.
IdeInspectorProperty[]IdeInspectorPropertySetComponent.getVisibleProperties()
           Returns all visible properties.
 

Methods in com.togethersoft.openapi.ide.inspector with parameters of type IdeInspectorProperty
voidIdeInspectorPropertySetComponent.addProperty(IdeInspectorProperty property, Condition condition, double weight)
           Adds new property with specified visibility condition and weight.
voidIdeInspectorPropertySetComponent.addProperty(IdeInspectorProperty property, Condition condition)
           Adds new property to this component and sets weight for it to 1 more then maximum weight.
ConditionIdeInspectorPropertySetComponent.getCondition(IdeInspectorProperty property)
           Returns visibility condition for specified property.
doubleIdeInspectorPropertySetComponent.getWeight(IdeInspectorProperty property)
           Returns weight for specified property.
voidIdeInspectorPropertySetComponent.removeProperty(IdeInspectorProperty property)
           Removes specified property, it's visibility condition and weight.
 

Uses of IdeInspectorProperty in com.togethersoft.openapi.ide.inspector.util
 

Constructors in com.togethersoft.openapi.ide.inspector.util with parameters of type IdeInspectorProperty
SinglePropertyCheckBoxUI.SinglePropertyCheckBoxUI(IdeInspectorProperty inspectorProperty, String name)
           Creates new checkbox for the specified InspectorProperty.
 

Uses of IdeInspectorProperty in com.togethersoft.openapi.ide.inspector.util.editors
 

Methods in com.togethersoft.openapi.ide.inspector.util.editors that return IdeInspectorProperty
protected IdeInspectorPropertyMultiValueTableUI.getInspectorPropertyFromAtomicValue(Object atomicValue)
          
 

Methods in com.togethersoft.openapi.ide.inspector.util.editors with parameters of type IdeInspectorProperty
protected ObjectMultiValueTableUI.getAtomicValueFromInspectorProperty(IdeInspectorProperty inspectorProperty)
          
voidSwingEditorSupport.init(IdeInspectorProperty property)
           Specifies IdeInspectorProperty to be edited.
voidSwingEnumEditor.init(IdeInspectorProperty property)
           Specifies IdeInspectorProperty to be edited.
voidSwingIntegerEditor.init(IdeInspectorProperty property)
           Specifies IdeInspectorProperty to be edited and creates UI components to display editor.
 

Uses of IdeInspectorProperty in com.togethersoft.openapi.ide.inspector.util.property
 

Subclasses of IdeInspectorProperty in com.togethersoft.openapi.ide.inspector.util.property
class PropertyMapInspectorProperty
           Allows to inspect certain property from existing PropertyMap.
class ReadOnlyProperty
           Represents read-only inspector property.
class RwiInspectorProperty
           Represents abstract implementation of InspectorProperty suited to works with properties of selected RwiElements.
 

Uses of IdeInspectorProperty in com.togethersoft.openapi.ide.inspector.util.table
 

Methods in com.togethersoft.openapi.ide.inspector.util.table that return IdeInspectorProperty
static IdeInspectorPropertyPropertyTableModel.extractIdeInspectorPropertyFromModel(TableModel tableModel, int row, int column)
           There can be different table models so this method can be overwritten in PropertyValueEditor subclasses.
IdeInspectorPropertyPropertyTableModel.getInspectorProperty(int row, int column)
           Fetches InspectorProperty from this table model.
protected IdeInspectorProperty[]PropertyTableModel.getPropertySetProperties()
           Returns array of all properties.
abstract IdeInspectorPropertyPropertyTableModelBase.getInspectorProperty(int row, int column)
           Should be overridden in order to produce extra actions during of fetching.
protected IdeInspectorPropertyPropertyValueEditor.extractIdeInspectorPropertyFromModel(TableModel tableModel, int row, int column)
           Fetches IdeInspectorProperty from the certain TableModel.
IdeInspectorPropertyRwiElementsTableModel.getInspectorProperty(int row, int col)
           Returns IdeInspectorProperty related to certain cell of this table model.
 

Methods in com.togethersoft.openapi.ide.inspector.util.table with parameters of type IdeInspectorProperty
protected voidPropertyTableModel.setPropertySetProperties(IdeInspectorProperty[] properties)
           Specifies new table model contents from existing array of InspectorProperties.