|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of PropertiedObject in com.metamatrix.common.callback |
---|
Subinterfaces of PropertiedObject in com.metamatrix.common.callback | |
---|---|
interface |
Callback
Implementations of this interface are passed to a CallbackHandler, allowing underlying services the ability to interact with a calling application to retrieve specific authentication data such as usernames and passwords, or to display certain information, such as error and warning messages. |
Classes in com.metamatrix.common.callback that implement PropertiedObject | |
---|---|
class |
CallbackImpl
Implementations of this interface are passed to a CallbackHandler, allowing underlying services the ability to interact with a calling application to retrieve specific authentication data such as usernames and passwords, or to display certain information, such as error and warning messages. |
Methods in com.metamatrix.common.callback that return PropertiedObject | |
---|---|
PropertiedObject |
CallbackImpl.getPropertiedObject()
return a PropertiedObject that the CallbackHandler should use and modify to hold any values in response to this Callback. |
PropertiedObject |
Callback.getPropertiedObject()
return a PropertiedObject that the CallbackHandler should use and modify to hold any values in response to this Callback. |
Constructors in com.metamatrix.common.callback with parameters of type PropertiedObject | |
---|---|
CallbackImpl(java.lang.String name,
java.lang.String displayName,
CallbackChoices choices,
PropertiedObject propertiedObject,
PropertiedObjectEditor propertiedObjectEditor)
|
|
CallbackImpl(java.lang.String name,
java.lang.String displayName,
CallbackChoices choices,
PropertiedObject propertiedObject,
PropertiedObjectEditor propertiedObjectEditor,
java.util.List propertyDefinitionGroups,
boolean isSequential)
|
Uses of PropertiedObject in com.metamatrix.common.config.api |
---|
Classes in com.metamatrix.common.config.api that implement PropertiedObject | |
---|---|
class |
ComponentTypePropDefn
ComponentTypePropDefn is an unmodifiable wrapper for the PropertyDefinition. |
Uses of PropertiedObject in com.metamatrix.common.config.model |
---|
Classes in com.metamatrix.common.config.model that implement PropertiedObject | |
---|---|
class |
BasicAuthenticationProvider
|
class |
BasicComponentDefn
|
class |
BasicComponentObject
|
class |
BasicConfiguration
Configuration represents a single named set of deployable components (e.g., service and system components), a deployed set of components, global properties, and additional information. |
class |
BasicConnectorBinding
|
class |
BasicDeployedComponent
DeployedComponent represents a Component that is declared deployed
to a specified machine. |
class |
BasicExtensionModule
|
class |
BasicHost
|
class |
BasicResourceDescriptor
|
class |
BasicServiceComponentDefn
|
class |
BasicSharedResource
|
class |
BasicVMComponentDefn
|
Uses of PropertiedObject in com.metamatrix.common.object |
---|
Subinterfaces of PropertiedObject in com.metamatrix.common.object | |
---|---|
interface |
ObjectDefinition
|
interface |
PropertyDefinition
Defines the type of property that will be placed in a detail panel or table |
Classes in com.metamatrix.common.object that implement PropertiedObject | |
---|---|
class |
ObjectDefinitionImpl
This class captures the definition of a generic property, and can be used to determine appropriate user-interface representations to present and capture property values. |
class |
PropertiedObjectImpl
This class provides an implementation of a PropertiedObject, including basic management of properties and property definitions. |
class |
PropertyDefinitionGroup
PropertyDefinitionGroup is a nestable list of PropertyDefinitions that are defined to be used together. |
class |
PropertyDefinitionImpl
Prototype implementation of PropertyDefinition |
Methods in com.metamatrix.common.object with parameters of type PropertiedObject | |
---|---|
protected PropertiedObjectImpl |
PropertiedObjectEditorImpl.assertPropertiedObject(PropertiedObject obj)
|
java.util.List |
PropertiedObjectEditor.getAllowedValues(PropertiedObject obj,
PropertyDefinition def)
Get the allowed values for the property on the specified object. |
java.util.List |
PropertiedObjectEditorImpl.getAllowedValues(PropertiedObject obj,
PropertyDefinition def)
Get the allowed values for the property on the specified object. |
java.util.List |
PropertiedObjectEditor.getPropertyDefinitions(PropertiedObject obj)
Obtain the list of PropertyDefinitions that apply to the specified object's type. |
java.util.List |
PropertiedObjectEditorImpl.getPropertyDefinitions(PropertiedObject obj)
Obtain the list of PropertyDefinitions that apply to the specified object's type. |
java.lang.Object |
PropertiedObjectEditor.getValue(PropertiedObject obj,
PropertyDefinition def)
Obtain from the specified PropertiedObject the property value that corresponds to the specified PropertyDefinition. |
java.lang.Object |
PropertiedObjectEditorImpl.getValue(PropertiedObject obj,
PropertyDefinition def)
Obtain from the specified PropertiedObject the property value that corresponds to the specified PropertyDefinition. |
boolean |
DefaultPropertyAccessPolicy.isReadOnly(PropertiedObject obj)
|
boolean |
PropertyAccessPolicyImpl.isReadOnly(PropertiedObject obj)
|
boolean |
PropertyAccessPolicy.isReadOnly(PropertiedObject obj)
|
boolean |
PropertiedObjectEditor.isReadOnly(PropertiedObject obj)
Return whether this editor may be used to set property values on the specified PropertiedObject. |
boolean |
PropertiedObjectEditorImpl.isReadOnly(PropertiedObject obj)
|
boolean |
DefaultPropertyAccessPolicy.isReadOnly(PropertiedObject obj,
PropertyDefinition def)
|
boolean |
PropertyAccessPolicyImpl.isReadOnly(PropertiedObject obj,
PropertyDefinition def)
|
boolean |
PropertyAccessPolicy.isReadOnly(PropertiedObject obj,
PropertyDefinition def)
|
boolean |
PropertiedObjectEditorImpl.isReadOnly(PropertiedObject obj,
PropertyDefinition def)
|
boolean |
PropertiedObjectEditor.isValidValue(PropertiedObject obj,
PropertyDefinition def,
java.lang.Object value)
Return whether the specified value is considered valid. |
boolean |
PropertiedObjectEditorImpl.isValidValue(PropertiedObject obj,
PropertyDefinition def,
java.lang.Object value)
Return whether the specified value is considered valid. |
void |
DefaultPropertyAccessPolicy.reset(PropertiedObject obj)
|
void |
PropertyAccessPolicyImpl.reset(PropertiedObject obj)
|
void |
PropertyAccessPolicy.reset(PropertiedObject obj)
|
void |
PropertiedObjectEditorImpl.reset(PropertiedObject obj)
|
void |
DefaultPropertyAccessPolicy.setReadOnly(PropertiedObject obj,
boolean readOnly)
|
void |
PropertyAccessPolicyImpl.setReadOnly(PropertiedObject obj,
boolean readOnly)
|
void |
PropertyAccessPolicy.setReadOnly(PropertiedObject obj,
boolean readOnly)
|
void |
PropertiedObjectEditorImpl.setReadOnly(PropertiedObject obj,
boolean readOnly)
|
void |
DefaultPropertyAccessPolicy.setReadOnly(PropertiedObject obj,
PropertyDefinition def,
boolean readOnly)
|
void |
PropertyAccessPolicyImpl.setReadOnly(PropertiedObject obj,
PropertyDefinition def,
boolean readOnly)
|
void |
PropertyAccessPolicy.setReadOnly(PropertiedObject obj,
PropertyDefinition def,
boolean readOnly)
|
void |
PropertiedObjectEditorImpl.setReadOnly(PropertiedObject obj,
PropertyDefinition def,
boolean readOnly)
|
void |
PropertiedObjectEditor.setValue(PropertiedObject obj,
PropertyDefinition def,
java.lang.Object value)
Set on the specified PropertiedObject the value defined by the specified PropertyDefinition. |
void |
PropertiedObjectEditorImpl.setValue(PropertiedObject obj,
PropertyDefinition def,
java.lang.Object value)
Set on the specified PropertiedObject the value defined by the specified PropertyDefinition. |
Uses of PropertiedObject in com.metamatrix.common.tree |
---|
Subinterfaces of PropertiedObject in com.metamatrix.common.tree | |
---|---|
interface |
TreeNode
This interface represents a single entry on a hierarchical system. |
Uses of PropertiedObject in com.metamatrix.common.tree.basic |
---|
Classes in com.metamatrix.common.tree.basic that implement PropertiedObject | |
---|---|
class |
BasicTreeNode
|
Methods in com.metamatrix.common.tree.basic with parameters of type PropertiedObject | |
---|---|
protected BasicTreeNode |
BasicTreeNodeEditor.assertBasicTreeNode(PropertiedObject obj)
|
java.util.List |
BasicTreeNodeEditor.getAllowedValues(PropertiedObject obj,
PropertyDefinition def)
Get the allowed values for the property on the specified object. |
java.util.List |
BasicTreeNodeEditor.getPropertyDefinitions(PropertiedObject obj)
Obtain the list of PropertyDefinitions that apply to the specified object's type. |
java.lang.Object |
BasicTreeNodeEditor.getValue(PropertiedObject obj,
PropertyDefinition def)
Obtain from the specified PropertiedObject the property value that corresponds to the specified PropertyDefinition. |
boolean |
BasicTreeNodeEditor.isReadOnly(PropertiedObject obj)
|
boolean |
BasicTreeNodeEditor.isReadOnly(PropertiedObject obj,
PropertyDefinition def)
|
boolean |
BasicTreeNodeEditor.isValidValue(PropertiedObject obj,
PropertyDefinition def,
java.lang.Object value)
Return whether the specified value is considered valid. |
void |
BasicTreeNodeEditor.reset(PropertiedObject obj)
|
void |
BasicTreeNodeEditor.setReadOnly(PropertiedObject obj,
boolean readOnly)
|
void |
BasicTreeNodeEditor.setReadOnly(PropertiedObject obj,
PropertyDefinition def,
boolean readOnly)
|
void |
BasicTreeNodeEditor.setValue(PropertiedObject obj,
PropertyDefinition def,
java.lang.Object value)
Set on the specified PropertiedObject the value defined by the specified PropertyDefinition. |
Uses of PropertiedObject in com.metamatrix.common.tree.directory |
---|
Subinterfaces of PropertiedObject in com.metamatrix.common.tree.directory | |
---|---|
interface |
DirectoryEntry
This interface represents a single resource on a hierarchical system, such as a file system. |
interface |
FileDefinition
|
interface |
FolderDefinition
|
Classes in com.metamatrix.common.tree.directory that implement PropertiedObject | |
---|---|
class |
FileDefinitionImpl
|
class |
FileSystemEntry
This class represents a single resource on a hierarchical system, such as a file system. |
class |
FolderDefinitionImpl
|
class |
PreviewableDirectoryEntry
This class represents a wrapper for a DirectoryEntry that holds off on actually writing to the DirectoryEntry so that a preview of the result can be obtained prior to writing. |
Methods in com.metamatrix.common.tree.directory with parameters of type PropertiedObject | |
---|---|
protected FileSystemEntry |
FileSystemEntryEditor.assertFileSystemEntry(PropertiedObject obj)
|
java.util.List |
FileSystemEntryEditor.getAllowedValues(PropertiedObject obj,
PropertyDefinition def)
Get the allowed values for the property on the specified object. |
java.util.List |
FileSystemEntryEditor.getPropertyDefinitions(PropertiedObject obj)
Obtain the list of PropertyDefinitions that apply to the specified object's type. |
java.lang.Object |
FileSystemEntryEditor.getValue(PropertiedObject obj,
PropertyDefinition def)
Obtain from the specified PropertiedObject the property value that corresponds to the specified PropertyDefinition. |
boolean |
FileSystemEntryEditor.isReadOnly(PropertiedObject obj)
Return whether this editor may be used to set property values on the specified PropertiedObject. |
boolean |
FileSystemEntryEditor.isReadOnly(PropertiedObject obj,
PropertyDefinition def)
|
boolean |
FileSystemEntryEditor.isValidValue(PropertiedObject obj,
PropertyDefinition def,
java.lang.Object value)
Return whether the specified value is considered valid. |
void |
FileSystemEntryEditor.reset(PropertiedObject obj)
|
void |
FileSystemEntryEditor.setReadOnly(PropertiedObject obj,
boolean readOnly)
|
void |
FileSystemEntryEditor.setReadOnly(PropertiedObject obj,
PropertyDefinition def,
boolean readOnly)
|
void |
FileSystemEntryEditor.setValue(PropertiedObject obj,
PropertyDefinition def,
java.lang.Object value)
Set on the specified PropertiedObject the value defined by the specified PropertyDefinition. |
Uses of PropertiedObject in com.metamatrix.console.models |
---|
Methods in com.metamatrix.console.models that return PropertiedObject | |
---|---|
PropertiedObject |
AuthenticationProviderManager.getPropertiedObject(ComponentDefn cdAuthProvider)
|
PropertiedObject |
ConnectorManager.getPropertiedObject(ServiceComponentDefn scdConnectorBinding)
|
PropertiedObject |
ConfigurationManager.getPropertiedObjectForComponentObject(ComponentObject componentObject)
Returns a PropertiedObject representation of a ComponentObject |
PropertiedObject |
ResourceManager.getPropertiedObjectForResourceDescriptor(ComponentObject rd)
|
Methods in com.metamatrix.console.models with parameters of type PropertiedObject | |
---|---|
protected ComponentObject |
ConfigurationPropertiedObjectEditor.assertComponentObject(PropertiedObject obj)
|
java.util.List |
ResourcePropertiedObjectEditor.getAllowedValues(PropertiedObject obj,
PropertyDefinition def)
Get the allowed values for the property on the specified object. |
java.util.List |
ConfigurationPropertiedObjectEditor.getAllowedValues(PropertiedObject obj,
PropertyDefinition def)
Get the allowed values for the property on the specified object. |
java.util.List |
ResourcePropertiedObjectEditor.getPropertyDefinitions(PropertiedObject obj)
Obtain the list of PropertyDefinitions that apply to the specified object's type. |
java.util.List |
ConfigurationPropertiedObjectEditor.getPropertyDefinitions(PropertiedObject obj)
Obtain the list of PropertyDefinitions that apply to the specified object's type. |
java.lang.Object |
ConfigurationPropertiedObjectEditor.getValue(PropertiedObject obj,
PropertyDefinition def)
Obtain from the specified PropertiedObject the property value that corresponds to the specified PropertyDefinition. |
boolean |
ConfigurationPropertiedObjectEditor.isReadOnly(PropertiedObject obj)
Return whether this editor may be used to set property values on the specified PropertiedObject. |
boolean |
ConfigurationPropertiedObjectEditor.isReadOnly(PropertiedObject obj,
PropertyDefinition def)
|
boolean |
ConfigurationPropertiedObjectEditor.isValidValue(PropertiedObject obj,
PropertyDefinition def,
java.lang.Object value)
Return whether the specified value is considered valid. |
void |
ConfigurationPropertiedObjectEditor.reset(PropertiedObject obj)
|
void |
ConfigurationPropertiedObjectEditor.setReadOnly(PropertiedObject obj,
boolean readOnly)
|
void |
ConfigurationPropertiedObjectEditor.setReadOnly(PropertiedObject obj,
PropertyDefinition def,
boolean readOnly)
|
void |
ResourcePropertiedObjectEditor.setValue(PropertiedObject obj,
PropertyDefinition def,
java.lang.Object value)
Set on the specified PropertiedObject the value defined by the specified PropertyDefinition. |
void |
ConfigurationPropertiedObjectEditor.setValue(PropertiedObject obj,
PropertyDefinition def,
java.lang.Object value)
Set on the specified PropertiedObject the value defined by the specified PropertyDefinition. |
Uses of PropertiedObject in com.metamatrix.console.ui.layout |
---|
Classes in com.metamatrix.console.ui.layout that implement PropertiedObject | |
---|---|
class |
UserPreferenceCallback
UserPreferenceCallback is a temporary Callback object constructed to generate the UserPreferences dialog. |
Methods in com.metamatrix.console.ui.layout with parameters of type PropertiedObject | |
---|---|
protected javax.swing.JPanel |
CDKCallbackHandler.createCallbackPanel(Callback callback,
PropertyDefinitionGroup definitionGroup,
PropertiedObject object,
PropertiedObjectEditor editor)
|
Uses of PropertiedObject in com.metamatrix.console.ui.tree |
---|
Classes in com.metamatrix.console.ui.tree that implement PropertiedObject | |
---|---|
class |
SortableChildrenNode
The SortableChildrenNode is a tree node whose children will be sorted
based on their toString implementation. |
Uses of PropertiedObject in com.metamatrix.console.ui.util |
---|
Methods in com.metamatrix.console.ui.util with parameters of type PropertiedObject | |
---|---|
void |
POPWithButtons.setPropertiedObject(PropertiedObject propObj)
|
Uses of PropertiedObject in com.metamatrix.console.ui.views.pools |
---|
Methods in com.metamatrix.console.ui.views.pools that return PropertiedObject | |
---|---|
PropertiedObject |
PoolPropertiedObjectAndEditor.getPropertiedObject()
|
Constructors in com.metamatrix.console.ui.views.pools with parameters of type PropertiedObject | |
---|---|
PoolPropertiedObjectAndEditor(java.lang.String poolName,
java.lang.String poolType,
PropertiedObject po,
PropertiedObjectEditor poe,
ResourceDescriptor pool,
ModificationActionQueue modificationActionQueue)
|
Uses of PropertiedObject in com.metamatrix.console.ui.views.properties |
---|
Classes in com.metamatrix.console.ui.views.properties that implement PropertiedObject | |
---|---|
class |
ConsolePropertyObjectId
|
Methods in com.metamatrix.console.ui.views.properties with parameters of type PropertiedObject | |
---|---|
java.util.List |
ConsolePropertiedEditor.getAllowedValues(PropertiedObject obj,
PropertyDefinition def)
|
java.util.List |
ConsolePropertiedEditor.getPropertyDefinitions(PropertiedObject obj)
|
java.lang.Object |
ConsolePropertiedEditor.getValue(PropertiedObject obj,
PropertyDefinition def)
Obtain from the specified PropertiedObject the property value that corresponds to the specified PropertyDefinition. |
boolean |
ConsolePropertiedEditor.isReadOnly(PropertiedObject obj)
Return whether this editor may be used to set property values on the specified PropertiedObject. |
boolean |
ConsolePropertiedEditor.isReadOnly(PropertiedObject obj,
PropertyDefinition def)
|
boolean |
ConsolePropertiedEditor.isValidValue(PropertiedObject obj,
PropertyDefinition def,
java.lang.Object value)
Return whether the specified value is considered valid. |
void |
ConsolePropertiedEditor.reset(PropertiedObject obj)
|
void |
ConsolePropertiedEditor.setReadOnly(PropertiedObject obj,
boolean readOnly)
|
void |
ConsolePropertiedEditor.setReadOnly(PropertiedObject obj,
PropertyDefinition def,
boolean readOnly)
|
void |
ConsolePropertiedEditor.setValue(PropertiedObject obj,
PropertyDefinition def,
java.lang.Object value)
Set on the specified PropertiedObject the value defined by the specified PropertyDefinition. |
Uses of PropertiedObject in com.metamatrix.console.ui.views.resources |
---|
Methods in com.metamatrix.console.ui.views.resources that return PropertiedObject | |
---|---|
PropertiedObject |
ResourceData.getPropertiedObject()
|
Uses of PropertiedObject in com.metamatrix.platform.admin.api |
---|
Subinterfaces of PropertiedObject in com.metamatrix.platform.admin.api | |
---|---|
interface |
PermissionDataNode
Defines an interface to tree node for displaying entitlements. |
interface |
PermissionDataNodeDefinition
This interface specifies an ObjectDefinition for the PermissionDataNode . |
interface |
PermissionNode
|
Uses of PropertiedObject in com.metamatrix.platform.admin.apiimpl |
---|
Classes in com.metamatrix.platform.admin.apiimpl that implement PropertiedObject | |
---|---|
class |
PermissionDataNodeDefinitionImpl
|
class |
PermissionDataNodeImpl
Defines a tree node for displaying entitlements. |
Uses of PropertiedObject in com.metamatrix.toolbox.preference |
---|
Classes in com.metamatrix.toolbox.preference that implement PropertiedObject | |
---|---|
class |
UserPreferences
|
Methods in com.metamatrix.toolbox.preference that return PropertiedObject | |
---|---|
PropertiedObject |
UserPreferences.getPropertiedObject()
|
Uses of PropertiedObject in com.metamatrix.toolbox.ui.callback |
---|
Methods in com.metamatrix.toolbox.ui.callback with parameters of type PropertiedObject | |
---|---|
protected javax.swing.JPanel |
DialogFactoryCallbackHandler.createCallbackPanel(Callback callback,
PropertyDefinitionGroup definitionGroup,
PropertiedObject object,
PropertiedObjectEditor editor)
Create a JPanel to edit the specified callback containing a PropertyDefinitionGroup for the specified PropertiedObject. |
protected javax.swing.JPanel |
DialogFactoryCallbackHandler.createCallbackPanel(Callback callback,
java.lang.String prompt,
PropertiedObject object,
PropertiedObjectEditor editor)
Create a JPanel to edit the specified callback containing a PropertiedObject. |
Uses of PropertiedObject in com.metamatrix.toolbox.ui.widget |
---|
Methods in com.metamatrix.toolbox.ui.widget with parameters of type PropertiedObject | |
---|---|
protected java.lang.Object[] |
PropertiedObjectArrayTable.getRowData(PropertiedObject node)
Creates the data array for each row of the details table from the directoryEntryView's properties. |
Uses of PropertiedObject in com.metamatrix.toolbox.ui.widget.property |
---|
Methods in com.metamatrix.toolbox.ui.widget.property that return PropertiedObject | |
---|---|
protected PropertiedObject |
PropertyComponentFactory.getPropertiedObject()
|
PropertiedObject |
PropertiedObjectPanel.getPropertiedObject()
|
Methods in com.metamatrix.toolbox.ui.widget.property with parameters of type PropertiedObject | |
---|---|
java.lang.Object |
ObjectReferenceHandler.getObjectReference(PropertiedObject object,
PropertiedObjectEditor editor,
PropertyDefinition def,
java.lang.Object currentValue)
Return a value for the specified ObjectReference type PropertyDefinition on the specified PropertiedObject. |
java.lang.Object[] |
ObjectReferenceHandler.getObjectReferences(PropertiedObject object,
PropertiedObjectEditor editor,
PropertyDefinition def,
java.util.Collection currentValues)
Return a Collection of values for the specified ObjectReference type PropertyDefinition on the specified PropertiedObject. |
void |
PropertyChangeAdapter.setPropertiedObject(PropertiedObject entity)
set the PropertiedObject that this adapter will be using for validation and setting of new property values. |
void |
PropertyComponentFactory.setPropertiedObject(PropertiedObject object)
|
void |
PropertiedObjectPanel.setPropertiedObject(PropertiedObject propObj)
Sets this panel to display the properties for the specified PropertiedObject. |
void |
PropertiedObjectPanel.setPropertiedObject(PropertiedObject propObj,
java.util.List propertiesToDisplay)
Sets this panel to display the specified properties for the specified PropertiedObject. |
void |
PropertiedObjectPanel.setPropertiedObject(PropertiedObject propObj,
PropertiedObjectEditor editor)
Sets this panel to display the properties for the specified PropertiedObject. |
void |
PropertiedObjectPanel.setPropertiedObject(PropertiedObject propObj,
PropertiedObjectEditor editor,
java.util.List propertiesToDisplay)
Sets the PropertiedObject whose properties are to be shown to the specified object. |
Uses of PropertiedObject in com.metamatrix.toolbox.ui.widget.tree |
---|
Classes in com.metamatrix.toolbox.ui.widget.tree that implement PropertiedObject | |
---|---|
class |
DefaultTreeNode
This is the default TreeNode used by DefaultTreeModel . |
Methods in com.metamatrix.toolbox.ui.widget.tree with parameters of type PropertiedObject | |
---|---|
java.util.List |
DefaultTreeNodeEditor.getAllowedValues(PropertiedObject object,
PropertyDefinition def)
|
java.util.List |
DefaultTreeNodeEditor.getPropertyDefinitions(PropertiedObject object)
|
java.lang.Object |
DefaultTreeNodeEditor.getValue(PropertiedObject object,
PropertyDefinition definition)
|
boolean |
DefaultTreeNodeEditor.isReadOnly(PropertiedObject object)
|
boolean |
DefaultTreeNodeEditor.isReadOnly(PropertiedObject object,
PropertyDefinition definition)
|
boolean |
DefaultTreeNodeEditor.isValidValue(PropertiedObject object,
PropertyDefinition definition,
java.lang.Object value)
|
void |
DefaultTreeNodeEditor.reset(PropertiedObject object)
|
void |
DefaultTreeNodeEditor.setReadOnly(PropertiedObject object,
boolean isReadOnly)
|
void |
DefaultTreeNodeEditor.setReadOnly(PropertiedObject object,
PropertyDefinition definition,
boolean isReadOnly)
|
void |
DefaultTreeNodeEditor.setValue(PropertiedObject object,
PropertyDefinition definition,
java.lang.Object value)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |