Interface PropertyGroup
- All Superinterfaces:
CMetadata,LocalizedType,MdObjectBase,MdObjectBaseUtil,MdObjectBaseXML,Remote,Root,SecondaryType
Attributes of PropertyGroup are:
Associations of PropertyGroup are:
Usage
To create an instance of this PropertyGroup, use thefactory
create methods. Example: create a PropertyGroup with name "PropertyGroup_Object", in repository "AAAAAAAA".
// create a store to contain your objects for this change. If you do not have an existing object // or store to use. You may obtain the store from another object by using Object.getObjectStore(). MdFactory factory; //where "factory" is a valid MdFactory instance MdObjectStore objectStore = factory.createObjectStore(); PropertyGroup myObject = (PropertyGroup) factory.createComplexMetadataObject(objectStore, "PropertyGroup_Object", MetadataObjects.PROPERTYGROUP, "AAAAAAAA"); myObject.updateMetadataAll(); // Write object to server objectStore.dispose(); // dispose of the object store if it is no longer needed
Behavior
- Attributes and associations for this object can be retrieved by using the methods in
MdOMIUtil. - When changes are made to the object, either by setting an attribute or adding objects to a particular association,
they can be persisted to the metadata server with the
updateMetadataAllmethod. - If an object needs to be deleted, the
deletemethod can be used. This will flag the object as being deleted on the client, and will require an update call to persist the change to the server.
Dependencies
This class depends on objects being contained in an MdObjectStore. Object stores should be disposed of when they are no longer needed as this will help clean up memory. Disposing an object store will dispose of all objects contained within that store.- Since:
- 9.0
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringConstant used for the name of the AssociatedObject association.static final StringConstant used for the name of the Customizers association.static final StringConstant used for the name of the GroupedProperties association.static final StringConstant used for the name of the ParentGroup association.static final StringConstant used for the name of the SubpropertyGroups association.static final StringConstant used for the name of the IsVisible attribute.static final StringConstant used for the name of the Maximum attribute.static final StringConstant used for the name of the Minimum attribute.Fields inherited from interface com.sas.metadata.remote.LocalizedType
ASSOCIATION_RESOURCES_NAMEFields inherited from interface com.sas.metadata.remote.MdObjectBase
ATTRIBUTE_DESC_NAME, ATTRIBUTE_ID_NAME, ATTRIBUTE_METADATACREATED_NAME, ATTRIBUTE_METADATAUPDATED_NAME, ATTRIBUTE_NAME_NAMEFields inherited from interface com.sas.metadata.remote.Root
ASSOCIATION_ACCESSCONTROLS_NAME, ASSOCIATION_CHANGES_NAME, ASSOCIATION_CUSTOMASSOCIATIONS_NAME, ASSOCIATION_DOCUMENTS_NAME, ASSOCIATION_EXTENSIONS_NAME, ASSOCIATION_EXTERNALIDENTITIES_NAME, ASSOCIATION_GROUPS_NAME, ASSOCIATION_IMPLEMENTORS_NAME, ASSOCIATION_KEYWORDS_NAME, ASSOCIATION_LOCALIZEDATTRIBUTES_NAME, ASSOCIATION_NOTES_NAME, ASSOCIATION_PRIMARYPROPERTYGROUP_NAME, ASSOCIATION_PROMPTS_NAME, ASSOCIATION_PROPERTIES_NAME, ASSOCIATION_PROPERTYSETS_NAME, ASSOCIATION_REFERENCEDOBJECTS_NAME, ASSOCIATION_RESPONSIBLEPARTIES_NAME, ASSOCIATION_SOURCETRANSFORMATIONS_NAME, ASSOCIATION_SPECSOURCETRANSFORMATIONS_NAME, ASSOCIATION_SPECTARGETTRANSFORMATIONS_NAME, ASSOCIATION_TARGETTRANSFORMATIONS_NAME, ASSOCIATION_TIMESTAMPS_NAME, ASSOCIATION_TREES_NAME, ASSOCIATION_TSOBJECTNAMESPACE_NAME, ASSOCIATION_USEDBYPROTOTYPES_NAME, ASSOCIATION_USINGPROTOTYPE_NAME, ASSOCIATION_VARIABLES_NAME, ATTRIBUTE_CHANGESTATE_NAME, ATTRIBUTE_LOCKEDBY_NAME, ATTRIBUTE_USAGEVERSION_NAME -
Method Summary
Modifier and TypeMethodDescriptionGets theRootforAssociatedObjectGets the AssociationList ofAssociatedObjectsgetAssociatedObjects(boolean fGoToServer) Gets the Associationlist ofAssociatedObjectsGets the AssociationList ofCustomizersgetCustomizers(boolean fGoToServer) Gets the Associationlist ofCustomizersGets the Association list ofGroupedPropertiesgetGroupedProperties(boolean fGoToServer) Gets the Associationlist ofGroupedPropertiesintGets theintvalue ofIsVisibleintGets the Metadata State ofIsVisibleintGets theintvalue ofMaximumintGets the Metadata State ofMaximumintGets theintvalue ofMinimumintGets the Metadata State ofMinimumGets thePropertyGroupforParentGroupGets the AssociationList ofParentGroupsgetParentGroups(boolean fGoToServer) Gets the Associationlist ofParentGroupsGets the Association list ofSubpropertyGroupsgetSubpropertyGroups(boolean fGoToServer) Gets the Associationlist ofSubpropertyGroupsvoid(S) Adds the Associated objects to the predObjects which are:
AssociatedObject
Customizers
ParentGroupvoid(S) This initializes the Required Objects(Roles) which are:voidsetAssociatedObject(Root inObject) Sets theAssociatedObjectslist 0th element to beinObject.voidSets theAssociatedObjectslist to belist.voidsetAssociatedObjects(AssociationList list, int state) Sets theAssociatedObjectslist to belist.voidSets theCustomizerslist to belist.voidsetCustomizers(AssociationList inObjects, int state) Sets the entire AssociationList to match the passed in Vector, sets the state of the AssociationListvoidSets theGroupedPropertieslist to belist.voidsetGroupedProperties(AssociationList inObjects, int state) Sets the entire GroupedProperties list to match the passed in AssociationList, sets the state of the GroupedPropertiesvoidsetIsVisible(int inIsVisible) Sets theIsVisiblevalue and sets the state to MetadataState.LOCAL.voidsetIsVisible(int inIsVisible, int state) Sets theIsVisibleMetadata State.voidsetIsVisible(String inIsVisible) Sets theIsVisiblevalue and sets the state to MetadataState.LOCAL.voidsetIsVisible(String inIsVisible, int state) Sets theIsVisiblevalue and Metadata State.voidsetIsVisibleState(int state) Sets the Metadata State ofIsVisible.voidsetMaximum(int inMaximum) Sets theMaximumvalue and sets the state to MetadataState.LOCAL.voidsetMaximum(int inMaximum, int state) Sets theMaximumMetadata State.voidsetMaximum(String inMaximum) Sets theMaximumvalue and sets the state to MetadataState.LOCAL.voidsetMaximum(String inMaximum, int state) Sets theMaximumvalue and Metadata State.voidsetMaximumState(int state) Sets the Metadata State ofMaximum.voidsetMinimum(int inMinimum) Sets theMinimumvalue and sets the state to MetadataState.LOCAL.voidsetMinimum(int inMinimum, int state) Sets theMinimumMetadata State.voidsetMinimum(String inMinimum) Sets theMinimumvalue and sets the state to MetadataState.LOCAL.voidsetMinimum(String inMinimum, int state) Sets theMinimumvalue and Metadata State.voidsetMinimumState(int state) Sets the Metadata State ofMinimum.voidsetParentGroup(PropertyGroup inObject) Sets theParentGroupslist 0th element to beinObject.voidSets theParentGroupslist to belist.voidsetParentGroups(AssociationList list, int state) Sets theParentGroupslist to belist.voidSets theSubpropertyGroupslist to belist.voidsetSubpropertyGroups(AssociationList inObjects, int state) Sets the entire SubpropertyGroups list to match the passed in AssociationList, sets the state of the SubpropertyGroupsMethods inherited from interface com.sas.metadata.remote.LocalizedType
getResources, getResources, setResources, setResourcesMethods inherited from interface com.sas.metadata.remote.MdObjectBase
addElementToChangeList, clearChangeList, getChangeList, getCMetadataType, getDesc, getDescMaxLength, getDescState, getFQID, getId, getIdState, getMetadataCreated, getMetadataCreatedState, getMetadataUpdated, getMetadataUpdatedState, getName, getNameMaxLength, getNameState, getObjectStore, getPredAssociations, getRepositoryID, getRequiredAssociations, getState, isAssociationRequired, isNewObject, isPredAssociation, removeElementFromChangeList, resetObject, resetState, resetStates, setCMetadataType, setDesc, setDesc, setDescState, setFQID, setFQID, setId, setId, setIdState, setMetadataCreated, setMetadataCreated, setMetadataCreatedState, setMetadataUpdated, setMetadataUpdated, setMetadataUpdatedState, setName, setName, setNameState, setObjectStore, setStateMethods inherited from interface com.sas.metadata.remote.MdObjectBaseUtil
addMdObjectListener, delete, dispose, fireMdObjectModified, getAssociatedObjects, getAssociatedObjects, getAssociatedObjects, getAssociationNames, getAssocs, getAssocsWA, getAttributeNames, getAttrs, getAttrsStates, getAuthorizationUtil, getChangeManagementState, getChgMgtExternalIdentityImportType, getClientSideOnlyObject, getMdObjectAssociation, getPopulatedAssocs, getUpdatedAttrs, getViewList, isCheckedOut, isLocked, objectModified, removeMdObjectListener, setAttrs, setChangeManagementTargetRepository, setChgMgtExternalIdentityImportType, setClientSideOnlyObject, setMdObjectAssociation, touch, updateAssnsIdsMethods inherited from interface com.sas.metadata.remote.MdObjectBaseXML
closeUpdateMetadataXML, createEmptyXML, createObjectRefreshXML, createObjectXML, createObjectXML, createUpdateAssociationXML, createUpdateAssociationXML, createUpdateSimpleXML, doCreateUpdateXML, getUpdateSimpleSubstring, updateMetadataAllMethods inherited from interface com.sas.metadata.remote.Root
getAccessControls, getAccessControls, getChanges, getChanges, getChangeState, getChangeStateMaxLength, getChangeStateState, getCustomAssociations, getCustomAssociations, getDocuments, getDocuments, getExtensions, getExtensions, getExternalIdentities, getExternalIdentities, getGroups, getGroups, getImplementors, getImplementors, getKeywords, getKeywords, getLocalizedAttributes, getLocalizedAttributes, getLockedBy, getLockedByMaxLength, getLockedByState, getNotes, getNotes, getPrimaryPropertyGroup, getPrimaryPropertyGroups, getPrimaryPropertyGroups, getPrompts, getPrompts, getProperties, getProperties, getPropertySets, getPropertySets, getReferencedObjects, getReferencedObjects, getResponsibleParties, getResponsibleParties, getSourceTransformations, getSourceTransformations, getSpecSourceTransformations, getSpecSourceTransformations, getSpecTargetTransformations, getSpecTargetTransformations, getTargetTransformations, getTargetTransformations, getTimestamps, getTimestamps, getTrees, getTrees, getTSObjectNamespace, getTSObjectNamespaces, getTSObjectNamespaces, getUsageVersion, getUsageVersionState, getUsedByPrototypes, getUsedByPrototypes, getUsingPrototype, getUsingPrototypes, getUsingPrototypes, getVariables, getVariables, setAccessControls, setAccessControls, setChanges, setChanges, setChangeState, setChangeState, setChangeStateState, setCustomAssociations, setCustomAssociations, setDocuments, setDocuments, setExtensions, setExtensions, setExternalIdentities, setExternalIdentities, setGroups, setGroups, setImplementors, setImplementors, setKeywords, setKeywords, setLocalizedAttributes, setLocalizedAttributes, setLockedBy, setLockedBy, setLockedByState, setNotes, setNotes, setPrimaryPropertyGroup, setPrimaryPropertyGroups, setPrimaryPropertyGroups, setPrompts, setPrompts, setProperties, setProperties, setPropertySets, setPropertySets, setReferencedObjects, setReferencedObjects, setResponsibleParties, setResponsibleParties, setSourceTransformations, setSourceTransformations, setSpecSourceTransformations, setSpecSourceTransformations, setSpecTargetTransformations, setSpecTargetTransformations, setTargetTransformations, setTargetTransformations, setTimestamps, setTimestamps, setTrees, setTrees, setTSObjectNamespace, setTSObjectNamespaces, setTSObjectNamespaces, setUsageVersion, setUsageVersion, setUsageVersion, setUsageVersion, setUsageVersionState, setUsedByPrototypes, setUsedByPrototypes, setUsingPrototype, setUsingPrototypes, setUsingPrototypes, setVariables, setVariables
-
Field Details
-
ATTRIBUTE_ISVISIBLE_NAME
static final String ATTRIBUTE_ISVISIBLE_NAMEConstant used for the name of the IsVisible attribute.IsVisible: Should this property be displayed in a UI?
- See Also:
-
ATTRIBUTE_MINIMUM_NAME
static final String ATTRIBUTE_MINIMUM_NAMEConstant used for the name of the Minimum attribute.Minimum: This is an optional attribute that describes the minimum number of property objects in this group that must have values.
- See Also:
-
ATTRIBUTE_MAXIMUM_NAME
static final String ATTRIBUTE_MAXIMUM_NAMEConstant used for the name of the Maximum attribute.Maximum: This is an optional attribute that describes the maximum number of property objects in this group that may have settings.
- See Also:
-
ASSOCIATION_ASSOCIATEDOBJECT_NAME
static final String ASSOCIATION_ASSOCIATEDOBJECT_NAMEConstant used for the name of the AssociatedObject association.AssociatedObject: The object that uses this group of properties.
- See Also:
-
ASSOCIATION_CUSTOMIZERS_NAME
static final String ASSOCIATION_CUSTOMIZERS_NAMEConstant used for the name of the Customizers association.Customizers: The programs that customizes this property group.A customizer is a standalone editor used to customize or edit a value. It does not reside inside a UI element as an editor does, but defines it's own window. If none exists on the entity, the customizer of the property type is returned.
- See Also:
-
ASSOCIATION_PARENTGROUP_NAME
static final String ASSOCIATION_PARENTGROUP_NAMEConstant used for the name of the ParentGroup association.ParentGroup: The parent group for this group of properties.
- See Also:
-
ASSOCIATION_GROUPEDPROPERTIES_NAME
static final String ASSOCIATION_GROUPEDPROPERTIES_NAMEConstant used for the name of the GroupedProperties association.GroupedProperties: The properties in this group.
- See Also:
-
ASSOCIATION_SUBPROPERTYGROUPS_NAME
static final String ASSOCIATION_SUBPROPERTYGROUPS_NAMEConstant used for the name of the SubpropertyGroups association.SubpropertyGroups: The subgroups for this group of properties.
- See Also:
-
-
Method Details
-
initializeRequiredObjects
void initializeRequiredObjects() throws RemoteException(S) This initializes the Required Objects(Roles) which are:- Specified by:
initializeRequiredObjectsin interfaceLocalizedType- Specified by:
initializeRequiredObjectsin interfaceMdObjectBaseUtil- Specified by:
initializeRequiredObjectsin interfaceRoot- Specified by:
initializeRequiredObjectsin interfaceSecondaryType- Throws:
RemoteException- If error connecting/communicating to/with remote object.
-
initializePredObjects
void initializePredObjects() throws RemoteException(S) Adds the Associated objects to the predObjects which are:
AssociatedObject
Customizers
ParentGroup- Specified by:
initializePredObjectsin interfaceLocalizedType- Specified by:
initializePredObjectsin interfaceMdObjectBase- Specified by:
initializePredObjectsin interfaceRoot- Specified by:
initializePredObjectsin interfaceSecondaryType- Throws:
RemoteException- If error connecting/communicating to/with remote object.
-
getIsVisible
int getIsVisible() throws RemoteExceptionGets theintvalue ofIsVisible- Returns:
- The
IsVisible - Throws:
RemoteException- If error connecting/communicating to/with remote object.
-
getIsVisibleState
int getIsVisibleState() throws RemoteExceptionGets the Metadata State ofIsVisible- Returns:
- The State.
- Throws:
RemoteException- If error connecting/communicating to/with remote object.
-
getMinimum
int getMinimum() throws RemoteExceptionGets theintvalue ofMinimum- Returns:
- The
Minimum - Throws:
RemoteException- If error connecting/communicating to/with remote object.
-
getMinimumState
int getMinimumState() throws RemoteExceptionGets the Metadata State ofMinimum- Returns:
- The State.
- Throws:
RemoteException- If error connecting/communicating to/with remote object.
-
getMaximum
int getMaximum() throws RemoteExceptionGets theintvalue ofMaximum- Returns:
- The
Maximum - Throws:
RemoteException- If error connecting/communicating to/with remote object.
-
getMaximumState
int getMaximumState() throws RemoteExceptionGets the Metadata State ofMaximum- Returns:
- The State.
- Throws:
RemoteException- If error connecting/communicating to/with remote object.
-
getAssociatedObjects
Gets the AssociationList ofAssociatedObjects- Returns:
- Returns the AssociationList of
AssociatedObjectswhich can be of type:
All types - Throws:
RemoteException- If error connecting/communicating to/with remote object.MdException
-
getAssociatedObject
Gets theRootforAssociatedObject- Returns:
- The
Root(nullif not set) ofAssociatedObjectwhich can be of type:
All types - Throws:
RemoteException- If error connecting/communicating to/with remote object.MdException- If error getting/setting part of the object.
-
getCustomizers
Gets the AssociationList ofCustomizers- Returns:
- Returns the AssociationList of
Customizerswhich can be of type:
SoftwareComponent
DeployedComponent
ConfiguredComponent
ServiceComponent
ServerComponent
LogicalServer
ServerContext - Throws:
RemoteException- If error connecting/communicating to/with remote object.MdException- If error getting/setting part of the object.
-
getParentGroups
Gets the AssociationList ofParentGroups- Returns:
- Returns the AssociationList of
ParentGroupswhich can be of type:
PropertyGroup - Throws:
RemoteException- If error connecting/communicating to/with remote object.MdException
-
getParentGroup
Gets thePropertyGroupforParentGroup- Returns:
- The
PropertyGroup(nullif not set) ofParentGroupwhich can be of type:
PropertyGroup - Throws:
RemoteException- If error connecting/communicating to/with remote object.MdException- If error getting/setting part of the object.
-
getGroupedProperties
Gets the Association list ofGroupedProperties- Returns:
- The AssociationList of
GroupedPropertieswhich can be of type:
AbstractProperty
Property
PrototypeProperty
AttributeProperty
AssociationProperty - Throws:
RemoteException- If error connecting/communicating to/with remote object.MdException- If error getting/setting part of the object.
-
getSubpropertyGroups
Gets the Association list ofSubpropertyGroups- Returns:
- The AssociationList of
SubpropertyGroupswhich can be of type:
PropertyGroup - Throws:
RemoteException- If error connecting/communicating to/with remote object.MdException- If error getting/setting part of the object.
-
getAssociatedObjects
Gets the Associationlist ofAssociatedObjects- Parameters:
fGoToServer- boolean Get the value from the server.- Returns:
- Returns the AssociationList of
AssociatedObjectswhich can be of type:
All types - Throws:
RemoteException- If error connecting/communicating to/with remote object.MdException- If error getting/setting part of the object.
-
getCustomizers
Gets the Associationlist ofCustomizers- Parameters:
fGoToServer- boolean Get the value from the server.- Returns:
- Returns the AssociationList of
Customizerswhich can be of type:
SoftwareComponent
DeployedComponent
ConfiguredComponent
ServiceComponent
ServerComponent
LogicalServer
ServerContext - Throws:
RemoteException- If error connecting/communicating to/with remote object.MdException- If error getting/setting part of the object.
-
getParentGroups
Gets the Associationlist ofParentGroups- Parameters:
fGoToServer- boolean Get the value from the server.- Returns:
- Returns the AssociationList of
ParentGroupswhich can be of type:
PropertyGroup - Throws:
RemoteException- If error connecting/communicating to/with remote object.MdException- If error getting/setting part of the object.
-
getGroupedProperties
Gets the Associationlist ofGroupedProperties- Parameters:
fGoToServer- boolean Get the value from the server.- Returns:
- Returns the
GroupedPropertieswhich can be of type:
AbstractProperty
Property
PrototypeProperty
AttributeProperty
AssociationProperty - Throws:
RemoteException- If error connecting/communicating to/with remote object.MdException- If error getting/setting part of the object.
-
getSubpropertyGroups
Gets the Associationlist ofSubpropertyGroups- Parameters:
fGoToServer- boolean Get the value from the server.- Returns:
- Returns the
SubpropertyGroupswhich can be of type:
PropertyGroup - Throws:
RemoteException- If error connecting/communicating to/with remote object.MdException- If error getting/setting part of the object.
-
setIsVisible
void setIsVisible(int inIsVisible) throws RemoteException Sets theIsVisiblevalue and sets the state to MetadataState.LOCAL.- Parameters:
inIsVisible- int- Throws:
RemoteException- If error communicating with remote object.
-
setIsVisible
void setIsVisible(int inIsVisible, int state) throws RemoteException Sets theIsVisibleMetadata State.- Parameters:
inIsVisible- intstate- int- Throws:
RemoteException- If error communicating with remote object.
-
setIsVisible
void setIsVisible(String inIsVisible) throws RemoteException Sets theIsVisiblevalue and sets the state to MetadataState.LOCAL.- Parameters:
inIsVisible- String- Throws:
RemoteException- If error communicating with remote object.
-
setIsVisible
void setIsVisible(String inIsVisible, int state) throws RemoteException Sets theIsVisiblevalue and Metadata State.- Parameters:
inIsVisible- Stringstate- int- Throws:
RemoteException- If error communicating with remote object.
-
setIsVisibleState
void setIsVisibleState(int state) throws RemoteException Sets the Metadata State ofIsVisible.- Parameters:
state- int- Throws:
RemoteException- If error communicating with remote object.
-
setMinimum
void setMinimum(int inMinimum) throws RemoteException Sets theMinimumvalue and sets the state to MetadataState.LOCAL.- Parameters:
inMinimum- int- Throws:
RemoteException- If error communicating with remote object.
-
setMinimum
void setMinimum(int inMinimum, int state) throws RemoteException Sets theMinimumMetadata State.- Parameters:
inMinimum- intstate- int- Throws:
RemoteException- If error communicating with remote object.
-
setMinimum
void setMinimum(String inMinimum) throws RemoteException Sets theMinimumvalue and sets the state to MetadataState.LOCAL.- Parameters:
inMinimum- String- Throws:
RemoteException- If error communicating with remote object.
-
setMinimum
void setMinimum(String inMinimum, int state) throws RemoteException Sets theMinimumvalue and Metadata State.- Parameters:
inMinimum- Stringstate- int- Throws:
RemoteException- If error communicating with remote object.
-
setMinimumState
void setMinimumState(int state) throws RemoteException Sets the Metadata State ofMinimum.- Parameters:
state- int- Throws:
RemoteException- If error communicating with remote object.
-
setMaximum
void setMaximum(int inMaximum) throws RemoteException Sets theMaximumvalue and sets the state to MetadataState.LOCAL.- Parameters:
inMaximum- int- Throws:
RemoteException- If error communicating with remote object.
-
setMaximum
void setMaximum(int inMaximum, int state) throws RemoteException Sets theMaximumMetadata State.- Parameters:
inMaximum- intstate- int- Throws:
RemoteException- If error communicating with remote object.
-
setMaximum
void setMaximum(String inMaximum) throws RemoteException Sets theMaximumvalue and sets the state to MetadataState.LOCAL.- Parameters:
inMaximum- String- Throws:
RemoteException- If error communicating with remote object.
-
setMaximum
void setMaximum(String inMaximum, int state) throws RemoteException Sets theMaximumvalue and Metadata State.- Parameters:
inMaximum- Stringstate- int- Throws:
RemoteException- If error communicating with remote object.
-
setMaximumState
void setMaximumState(int state) throws RemoteException Sets the Metadata State ofMaximum.- Parameters:
state- int- Throws:
RemoteException- If error communicating with remote object.
-
setAssociatedObjects
Sets theAssociatedObjectslist to belist. Object of which can be of type:
All types- Parameters:
list- AssociationList- Throws:
RemoteException- If error communicating with remote object.
-
setAssociatedObjects
Sets theAssociatedObjectslist to belist. Object of which can be of type:
All types- Parameters:
list- AssociationListstate- int- Throws:
RemoteException- If error communicating with remote object.
-
setAssociatedObject
Sets theAssociatedObjectslist 0th element to beinObject.- Parameters:
inObject- Root- Throws:
RemoteException- If error communicating with remote object.
-
setCustomizers
Sets theCustomizerslist to belist. Objects of which can be of type:
SoftwareComponent
DeployedComponent
ConfiguredComponent
ServiceComponent
ServerComponent
LogicalServer
ServerContext- Parameters:
list- AssociationList- Throws:
RemoteException- If error communicating with remote object.
-
setCustomizers
Sets the entire AssociationList to match the passed in Vector, sets the state of the AssociationList- Parameters:
inObjects- AssociationListstate- int- Throws:
RemoteException- If error communicating with remote object.
-
setParentGroups
- Parameters:
list- AssociationList- Throws:
RemoteException- If error communicating with remote object.
-
setParentGroups
- Parameters:
list- AssociationListstate- int- Throws:
RemoteException- If error communicating with remote object.
-
setParentGroup
Sets theParentGroupslist 0th element to beinObject.- Parameters:
inObject- PropertyGroup- Throws:
RemoteException- If error communicating with remote object.
-
setGroupedProperties
Sets theGroupedPropertieslist to belist. Objects of which can be of type:
AbstractProperty
Property
PrototypeProperty
AttributeProperty
AssociationProperty- Parameters:
list- AssociationList- Throws:
RemoteException- If error communicating with remote object.
-
setGroupedProperties
Sets the entire GroupedProperties list to match the passed in AssociationList, sets the state of the GroupedProperties- Parameters:
inObjects- AssociationListstate- int- Throws:
RemoteException- If error communicating with remote object.
-
setSubpropertyGroups
- Parameters:
list- AssociationList- Throws:
RemoteException- If error communicating with remote object.
-
setSubpropertyGroups
Sets the entire SubpropertyGroups list to match the passed in AssociationList, sets the state of the SubpropertyGroups- Parameters:
inObjects- AssociationListstate- int- Throws:
RemoteException- If error communicating with remote object.
-