|
Components |
|
| |||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
com.sas.prompts.groups.PromptGroup
public class PromptGroup
A class to group PromptDefinitions. Groups can be hierarchical and contains other PromptGroups and PromptDefinitions.
Field Summary |
---|
Fields inherited from interface com.sas.prompts.groups.PromptGroupInterface |
---|
PROMPT_GROUP_VALIDATION_ERROR_DISALLOWED_PROMPT_DEFINITION, PROMPT_GROUP_VALIDATION_ERROR_DUPLICATE_MODAL_CHOICE_VALUE, PROMPT_GROUP_VALIDATION_ERROR_NOT_VALID_SUBGROUP, PROMPT_GROUP_VALIDATION_NO_ERRORS |
Constructor Summary | |
---|---|
PromptGroup()
Constructor |
|
PromptGroup(java.util.List promptDefinitionsAndSubgroups)
Constructor that takes a group name and a list of definitions and subgroups. |
Method Summary | |
---|---|
void |
addPromptDefinition(PromptDefinitionInterface promptDefinition)
Adds a group to the group at the end of the list |
void |
addPromptDefinition(PromptDefinitionInterface promptDefinition,
int index)
Adds a group to the group at the specified index. |
void |
addPromptDefinitionCombination(PromptDefinitionInterface promptDefinitionToCombine1,
PromptDefinitionInterface promptDefinitionToCombine2)
Adds a combination rule for the specified prompt definitions. |
void |
addPromptDefinitions(java.util.List<PromptDefinitionInterface> promptDefinitions)
Add a List of prompts at the end of the list |
void |
addPromptSubgroup(PromptGroupInterface promptSubgroup)
Adds a subgroup to the group at the end of the list |
void |
addPromptSubgroup(PromptGroupInterface promptSubgroup,
int index)
Adds the specified group as a subgroup at the specified index in the list of definitions and groups. |
void |
configureAttributes(java.util.Map<java.lang.String,?> options,
java.util.Map<java.lang.String,?> context)
|
boolean |
containsSubgroup(PromptGroupInterface subGroupCandidate,
boolean recursive)
Returns true if the specified subGroupCandidate argument is identified as a subgroup of this group. |
PromptGroupInterface |
findPromptSubgroup(PromptDefinitionInterface promptDefinition)
Returns the group which contains the passed in prompt. |
com.sas.uiconfig.ApplicationContext |
getApplicationContext()
|
java.util.List |
getAttributeDescriptors(java.util.Locale myLocale)
Return a List of attribute descriptors containing information about the attributes of this type of prompt group. |
java.util.List<com.sas.prompts.AttributeDependencyInterface> |
getDependentPromptsForAttributes()
Returns a List of objects which implement AttributeDependencyInterface. |
com.sas.storage.editableproperties.PropertyList |
getLocalizableProperties()
Internal method |
protected com.sas.util.UsageVersion |
getMaxVersion()
|
PromptDefinitionInterface |
getPromptDefinition(java.lang.String promptName,
boolean recursive)
Trys to find the specified prompt definition in the group or one of it's subgroups. |
java.util.List<PromptDefinitionInterface> |
getPromptDefinitionCombinations(PromptDefinitionInterface promptDefinition)
Returns a list of PromptDefinitionInterfaces which are combined with the specified PromptDefinitionInterface or an empty list. |
java.util.List<PromptDefinitionInterface> |
getPromptDefinitions(boolean recursive)
Returns a List of all prompt definitions in this group and all subgroups. |
java.util.List |
getPromptDefinitionsAndSubgroups()
Returns a List of all prompt definitions and subgroups in this group. |
java.util.List |
getPromptDefinitionsAndSubgroups(java.util.List definitions,
boolean recursive,
boolean includeDefinitions,
boolean includeSubgroups)
Helper method to return prompts and/or groups contained in this group. |
java.lang.String |
getPromptGroupDescription(java.util.Locale locale)
Returns the description for the group in the specified Locale. |
com.sas.util.LocalizableString |
getPromptGroupDescriptions()
Returns a LocalizableString containing all the descriptions for the group. |
java.lang.String |
getPromptGroupLabel(java.util.Locale locale)
Returns the label for the group in the specified Locale. |
com.sas.util.LocalizableString |
getPromptGroupLabels()
Returns a LocalizableString containing all the labels for the group. |
com.sas.prompts.groups.PromptGroupLayoutInterface |
getPromptGroupLayout()
|
PromptHelp |
getPromptHelp()
Returns the help of the prompt group. |
java.lang.String |
getPromptID()
Returns a unique identifier for the prompt group. |
java.util.List<PromptGroupInterface> |
getPromptSubgroups(boolean recursive)
Returns a List of all prompt definition subgroups. |
com.sas.prompts.script.ScriptHolder |
getScript(com.sas.prompts.script.PromptAction promptAction)
Returns the ScriptHolder instance, if any, whose action matches the PromptAction parameter (which may not be null). |
java.util.Collection<com.sas.prompts.script.ScriptHolder> |
getScripts()
Returns an unmodifiable collection of the scripts or an empty collection. |
com.sas.storage.editableproperties.PropertyList |
getSubstitutionProperties()
Returns a non-null PropertyList. |
com.sas.uiconfig.UIConfigurationInterface |
getUIConfiguration()
Returns a UI configuration object with options indicating how the prompt designer would like the prompting UI to look and behave. |
java.lang.String |
getVersion()
|
protected java.util.List |
getWritableLayoutInfo(boolean writeRefsNotDefinitions)
|
boolean |
hasPromptDefinition(PromptDefinitionInterface promptDefinition)
Returns whether or not the specified PromptDefinition is contained in the PromptGroup or any of it's subgroups. |
int |
indexOfPromptDefinitionOrSubgroup(java.lang.Object promptDefintionOrSubGroup)
Returns the index of the PromptDefintionInterface or PromptGroupInterface that is passed in. |
boolean |
isClearPromptValuesWhenHidden()
Returns whether |
boolean |
isIgnorePromptValuesWhenHidden()
Returns whether the prompts contained in this group and any subgroups will be ignored when generating macro variables if the group is hidden. |
boolean |
isPromptGroupDisabled()
Returns whether the prompt group should be disabled in the runtime UI. |
boolean |
isPromptGroupHidden()
Returns whether the prompt group should be hidden in the runtime UI. |
boolean |
isTransparent()
Returns whether the prompts in the group should be treated as if they are in the parent group when they are presented in a user interface. |
void |
removeAll()
Removes all prompts and groups from the group. |
void |
removeAllPromptDefinitions(boolean recursive)
Removes all prompts from the group and optionally all subgroups. |
void |
removeAllPromptSubgroups()
Removes all groups from the group. |
void |
removePromptDefinition(PromptDefinitionInterface promptDefinition)
Removes the specified prompt from the group |
void |
removePromptDefinitionCombination(PromptDefinitionInterface promptDefinitionToCombine1,
PromptDefinitionInterface promptDefinitionToCombine2)
Removes the combination between the specified PromptDefinitionInterfaces. |
void |
removePromptSubgroup(PromptGroupInterface promptSubgroup)
Removes the specified prompt group |
void |
removeScript(com.sas.prompts.script.PromptAction promptAction)
Removes the ScriptHolder whose action matches this PromptAction. |
boolean |
replacePromptDefintion(PromptDefinitionInterface promptDefinition,
PromptDefinitionInterface newPromptDefinition,
boolean recursive)
Replaces a prompt in the group with a different prompt. |
boolean |
replacePromptSubgroup(PromptGroupInterface promptSubgroup,
PromptGroupInterface newPromptSubgroup,
boolean recursive)
Replaces a subgroup in the group with a different subgroup. |
void |
setApplicationContext(com.sas.uiconfig.ApplicationContext applicationContext)
|
void |
setClearPromptValuesWhenHidden(boolean clearPromptValuesWhenHidden)
Sets whether the values of all prompts contained in this group or any subgroup will be cleared when the group is hidden. |
void |
setDependentPromptsForAttributes(java.util.List<com.sas.prompts.AttributeDependencyInterface> dependencies)
Sets a List of objects which implement AttributeDependencyInterface. |
void |
setIgnorePromptValuesWhenHidden(boolean ignorePromptValuesWhenHidden)
Sets whether the prompts contained in this group and any subgroups will be ignored when generating macro variables if the group is hidden. |
void |
setLocalizableProperties(com.sas.storage.editableproperties.PropertyMap map)
Internal method |
void |
setPromptGroupDescription(java.lang.String newDesc,
java.util.Locale locale)
Sets the description for the group in the given locale |
void |
setPromptGroupDescriptions(com.sas.util.LocalizableString descriptions)
Sets a LocalizableString containing the localized descriptions for the group. |
void |
setPromptGroupDisabled(boolean disabled)
Sets whether the prompt group should be disabled in the runtime UI. |
void |
setPromptGroupHidden(boolean hidden)
Sets whether the prompt group should be hidden in the runtime UI. |
void |
setPromptGroupLabel(java.lang.String newLabel,
java.util.Locale locale)
Sets the label for the group in the given locale |
void |
setPromptGroupLabels(com.sas.util.LocalizableString labels)
Sets a LocalizableString containing the localized labels for the group. |
void |
setPromptGroupLayout(com.sas.prompts.groups.PromptGroupLayoutInterface layout)
|
void |
setPromptHelp(PromptHelp promptHelp)
Sets the prompt help of the prompt group. |
void |
setPromptID(java.lang.String promptID)
Sets an identifier for the prompt group. |
void |
setScript(com.sas.prompts.script.ScriptHolder scriptHolder)
Sets the ScriptHolder into the collection. |
void |
setSubstitutionProperties(com.sas.storage.editableproperties.PropertyMap map)
Sets substitution properties into the implementing object. |
void |
setTransparent(boolean transparent)
Sets whether the prompts in the group should be treated as if they are in the parent group when they are presented in a user interface. |
void |
setUIConfiguration(com.sas.uiconfig.UIConfigurationInterface uiConfig)
Set a UI configuration object with options indicating how the prompt designer would like the prompting UI to look and behave. |
java.lang.String |
toString()
Returns a String containing the name of the group. |
protected void |
writeLayout(org.w3c.dom.Element element,
com.sas.util.xmlpersist.PromptsWritingContext writingContext)
|
Constructor Detail |
---|
public PromptGroup()
public PromptGroup(java.util.List promptDefinitionsAndSubgroups)
promptDefinitionsAndSubgroups
- ListMethod Detail |
---|
public PromptHelp getPromptHelp()
getPromptHelp
in interface com.sas.prompts.PromptHelpInterface
PromptHelp
public void setPromptHelp(PromptHelp promptHelp)
promptHelp
- The help set by the creator of the promptPromptHelp
public PromptDefinitionInterface getPromptDefinition(java.lang.String promptName, boolean recursive)
getPromptDefinition
in interface PromptGroupInterface
promptName
- the name of the prompt to findrecursive
- Whether to search subgroups for a prompt with the specified name
com.sas.prompts.groups.PromptGroupInterface#getPromptDefinition(String)
public java.util.List getPromptDefinitionsAndSubgroups(java.util.List definitions, boolean recursive, boolean includeDefinitions, boolean includeSubgroups)
getPromptDefinitionsAndSubgroups
in interface PromptGroupInterface
definitions
- A List to return the prompts and/or groups in. If null, a new list will be created and returned.recursive
- Whether to recurse into subgroups and return their promptsand/or subgroups.includeDefinitions
- Whether to include prompts in the returned list.includeSubgroups
- Whether to include groups in the returned list.
PromptGroupInterface.getPromptDefinitionsAndSubgroups(List, boolean, boolean, boolean)
public boolean hasPromptDefinition(PromptDefinitionInterface promptDefinition)
hasPromptDefinition
in interface PromptGroupInterface
promptDefinition
- The prompt to search for
PromptGroupInterface.hasPromptDefinition(PromptDefinitionInterface)
public java.util.List getPromptDefinitionsAndSubgroups()
getPromptDefinitionsAndSubgroups
in interface PromptGroupInterface
PromptGroupInterface.getPromptDefinitionsAndSubgroups()
public PromptGroupInterface findPromptSubgroup(PromptDefinitionInterface promptDefinition)
findPromptSubgroup
in interface PromptGroupInterface
public java.util.List<PromptDefinitionInterface> getPromptDefinitions(boolean recursive)
getPromptDefinitions
in interface PromptGroupInterface
recursive
- Whether to include prompts from subgroups
PromptGroupInterface.getPromptDefinitions(boolean)
public java.util.List<PromptGroupInterface> getPromptSubgroups(boolean recursive)
getPromptSubgroups
in interface PromptGroupInterface
recursive
- whether to recurse into subgroups
PromptGroupInterface.getPromptSubgroups(boolean)
public void addPromptDefinition(PromptDefinitionInterface promptDefinition)
addPromptDefinition
in interface PromptGroupInterface
promptDefinition
- The prompt to addPromptGroupInterface.addPromptDefinition(PromptDefinitionInterface)
public void addPromptDefinition(PromptDefinitionInterface promptDefinition, int index)
addPromptDefinition
in interface PromptGroupInterface
promptDefinition
- The prompt to addindex
- The index to insert the prompt atPromptGroupInterface.addPromptDefinition(PromptDefinitionInterface, int)
public void addPromptDefinitions(java.util.List<PromptDefinitionInterface> promptDefinitions)
addPromptDefinitions
in interface PromptGroupInterface
promptDefinitions
- The List of prompts to addPromptGroupInterface.addPromptDefinitions(List)
public void removePromptDefinition(PromptDefinitionInterface promptDefinition)
removePromptDefinition
in interface PromptGroupInterface
promptDefinition
- The prompt to removePromptGroupInterface.removePromptDefinition(PromptDefinitionInterface)
public void addPromptSubgroup(PromptGroupInterface promptSubgroup)
addPromptSubgroup
in interface PromptGroupInterface
promptSubgroup
- The group to addPromptGroupInterface.addPromptSubgroup(PromptGroupInterface)
public void addPromptSubgroup(PromptGroupInterface promptSubgroup, int index)
addPromptSubgroup
in interface PromptGroupInterface
promptSubgroup
- The group to addindex
- Index to add the group at, or -1 to add at the end.PromptGroupInterface.addPromptSubgroup(PromptGroupInterface, int)
public void removePromptSubgroup(PromptGroupInterface promptSubgroup)
removePromptSubgroup
in interface PromptGroupInterface
promptSubgroup
- The group to removePromptGroupInterface.removePromptSubgroup(PromptGroupInterface)
public int indexOfPromptDefinitionOrSubgroup(java.lang.Object promptDefintionOrSubGroup)
indexOfPromptDefinitionOrSubgroup
in interface PromptGroupInterface
promptDefintionOrSubGroup
- needs to be either a prompt definition or prompt group
public java.lang.String getPromptGroupLabel(java.util.Locale locale)
getPromptGroupLabel
in interface PromptGroupInterface
locale
- The Locale to get the label for.
PromptGroupInterface.getPromptGroupLabel(Locale)
public void setPromptGroupLabel(java.lang.String newLabel, java.util.Locale locale)
setPromptGroupLabel
in interface PromptGroupInterface
newLabel
- The label to setlocale
- The locale to set the label forPromptGroupInterface.setPromptGroupLabel(String, Locale)
public java.lang.String getPromptGroupDescription(java.util.Locale locale)
getPromptGroupDescription
in interface PromptGroupInterface
locale
- The Locale to get the description for.
PromptGroupInterface.getPromptGroupDescription(Locale)
public void setPromptGroupDescription(java.lang.String newDesc, java.util.Locale locale)
setPromptGroupDescription
in interface PromptGroupInterface
newLabel
- The description to setlocale
- The locale to set the description forPromptGroupInterface.setPromptGroupDescription(String, Locale)
public com.sas.util.LocalizableString getPromptGroupLabels()
getPromptGroupLabels
in interface PromptGroupInterface
PromptGroupInterface.getPromptGroupLabels()
public com.sas.util.LocalizableString getPromptGroupDescriptions()
getPromptGroupDescriptions
in interface PromptGroupInterface
PromptGroupInterface.getPromptGroupDescriptions()
public void setPromptGroupLabels(com.sas.util.LocalizableString labels)
setPromptGroupLabels
in interface PromptGroupInterface
labels
- a LocalizableString containing the localized labels for the group.PromptGroupInterface.setPromptGroupLabels(LocalizableString)
public void setPromptGroupDescriptions(com.sas.util.LocalizableString descriptions)
setPromptGroupDescriptions
in interface PromptGroupInterface
descriptions
- a LocalizableString containing the localized descriptions for the group.PromptGroupInterface.setPromptGroupDescriptions(LocalizableString)
public boolean isPromptGroupHidden()
isPromptGroupHidden
in interface PromptGroupInterface
PromptGroupInterface.isPromptGroupHidden()
public void setPromptGroupHidden(boolean hidden)
setPromptGroupHidden
in interface PromptGroupInterface
hidden
- whether the prompt group should be hidden in the runtime UI.public boolean isPromptGroupDisabled()
isPromptGroupDisabled
in interface com.sas.prompts.groups.PromptGroupV2Interface
PromptGroupV2Interface.isPromptGroupDisabled()
public void setPromptGroupDisabled(boolean disabled)
setPromptGroupDisabled
in interface com.sas.prompts.groups.PromptGroupV2Interface
hidden
- whether the prompt group should be disabled in the runtime UI.public java.lang.String toString()
toString
in class java.lang.Object
public void removeAll()
removeAll
in interface PromptGroupInterface
public void removeAllPromptDefinitions(boolean recursive)
removeAllPromptDefinitions
in interface PromptGroupInterface
recursive
- Whether to remove prompts from subgroupspublic void removeAllPromptSubgroups()
removeAllPromptSubgroups
in interface PromptGroupInterface
public boolean replacePromptDefintion(PromptDefinitionInterface promptDefinition, PromptDefinitionInterface newPromptDefinition, boolean recursive)
replacePromptDefintion
in interface PromptGroupInterface
promptDefinition
- The prompt to replacenewPromptDefinition
- The new prompt to place in the group.recursive
- Whether to search subgroups during the replace
public boolean replacePromptSubgroup(PromptGroupInterface promptSubgroup, PromptGroupInterface newPromptSubgroup, boolean recursive)
replacePromptSubgroup
in interface PromptGroupInterface
promptSubgroup
- The subgroup to replacenewPromptSubgroup
- The new subgroup to place in the group.recursive
- Whether to search subgroups during the replace
public boolean isIgnorePromptValuesWhenHidden()
isIgnorePromptValuesWhenHidden
in interface com.sas.prompts.groups.PromptGroupV2Interface
public void setIgnorePromptValuesWhenHidden(boolean ignorePromptValuesWhenHidden)
setIgnorePromptValuesWhenHidden
in interface com.sas.prompts.groups.PromptGroupV2Interface
ignorePromptValuesWhenHidden
- public boolean isClearPromptValuesWhenHidden()
isClearPromptValuesWhenHidden
in interface com.sas.prompts.groups.PromptGroupV2Interface
public void setClearPromptValuesWhenHidden(boolean clearPromptValuesWhenHidden)
PromptGroupV2Interface
setClearPromptValuesWhenHidden
in interface com.sas.prompts.groups.PromptGroupV2Interface
protected void writeLayout(org.w3c.dom.Element element, com.sas.util.xmlpersist.PromptsWritingContext writingContext) throws java.util.prefs.BackingStoreException
java.util.prefs.BackingStoreException
protected java.util.List getWritableLayoutInfo(boolean writeRefsNotDefinitions)
public boolean containsSubgroup(PromptGroupInterface subGroupCandidate, boolean recursive)
containsSubgroup
in interface PromptGroupInterface
subGroupCandidate
- PromptGroupInterface to be identified as
a subgroup of this group or not.
public com.sas.storage.editableproperties.PropertyList getLocalizableProperties()
getLocalizableProperties
in interface com.sas.storage.editableproperties.LocalizableProperties
public void setLocalizableProperties(com.sas.storage.editableproperties.PropertyMap map)
setLocalizableProperties
in interface com.sas.storage.editableproperties.LocalizableProperties
map
- - map containing localized propertiespublic void setPromptGroupLayout(com.sas.prompts.groups.PromptGroupLayoutInterface layout)
setPromptGroupLayout
in interface com.sas.prompts.groups.PromptGroupV2Interface
public com.sas.prompts.groups.PromptGroupLayoutInterface getPromptGroupLayout()
getPromptGroupLayout
in interface com.sas.prompts.groups.PromptGroupV2Interface
public void addPromptDefinitionCombination(@NotNull PromptDefinitionInterface promptDefinitionToCombine1, @NotNull PromptDefinitionInterface promptDefinitionToCombine2)
PromptGroupV2Interface
addPromptDefinitionCombination
in interface com.sas.prompts.groups.PromptGroupV2Interface
public java.util.List<PromptDefinitionInterface> getPromptDefinitionCombinations(PromptDefinitionInterface promptDefinition)
PromptGroupV2Interface
getPromptDefinitionCombinations
in interface com.sas.prompts.groups.PromptGroupV2Interface
public void removePromptDefinitionCombination(@NotNull PromptDefinitionInterface promptDefinitionToCombine1, @NotNull PromptDefinitionInterface promptDefinitionToCombine2)
PromptGroupV2Interface
removePromptDefinitionCombination
in interface com.sas.prompts.groups.PromptGroupV2Interface
public void configureAttributes(java.util.Map<java.lang.String,?> options, java.util.Map<java.lang.String,?> context)
configureAttributes
in interface com.sas.util.AttributeConfigurationInterface
public java.util.List<com.sas.prompts.AttributeDependencyInterface> getDependentPromptsForAttributes()
getDependentPromptsForAttributes
in interface com.sas.prompts.groups.PromptGroupV2Interface
public void setDependentPromptsForAttributes(java.util.List<com.sas.prompts.AttributeDependencyInterface> dependencies)
setDependentPromptsForAttributes
in interface com.sas.prompts.groups.PromptGroupV2Interface
dependencies
- a List of objects which implement AttributeDependencyInterface. Null may be passed in
to indicate no dependencies.public boolean isTransparent()
PromptGroupV2Interface
isTransparent
in interface com.sas.prompts.groups.PromptGroupV2Interface
public void setTransparent(boolean transparent)
PromptGroupV2Interface
setTransparent
in interface com.sas.prompts.groups.PromptGroupV2Interface
public com.sas.uiconfig.UIConfigurationInterface getUIConfiguration()
getUIConfiguration
in interface com.sas.prompts.groups.PromptGroupV2Interface
public void setUIConfiguration(com.sas.uiconfig.UIConfigurationInterface uiConfig)
setUIConfiguration
in interface com.sas.prompts.groups.PromptGroupV2Interface
uiConfig
- a UI configurationpublic com.sas.prompts.script.ScriptHolder getScript(com.sas.prompts.script.PromptAction promptAction)
PromptGroupV2Interface
getScript
in interface com.sas.prompts.groups.PromptGroupV2Interface
public void setScript(com.sas.prompts.script.ScriptHolder scriptHolder)
PromptGroupV2Interface
setScript
in interface com.sas.prompts.groups.PromptGroupV2Interface
public void removeScript(com.sas.prompts.script.PromptAction promptAction)
PromptGroupV2Interface
removeScript
in interface com.sas.prompts.groups.PromptGroupV2Interface
public java.util.Collection<com.sas.prompts.script.ScriptHolder> getScripts()
PromptGroupV2Interface
getScripts
in interface com.sas.prompts.groups.PromptGroupV2Interface
public java.util.List getAttributeDescriptors(java.util.Locale myLocale)
getAttributeDescriptors
in interface com.sas.prompts.groups.PromptGroupV2Interface
locale
-
public java.lang.String getPromptID()
getPromptID
in interface com.sas.prompts.IdentifiablePromptInterface
public void setPromptID(java.lang.String promptID)
setPromptID
in interface com.sas.prompts.MutableIdentifiablePromptInterface
MutableIdentifiablePromptInterface.setPromptID(java.lang.String)
public java.lang.String getVersion()
getVersion
in interface com.sas.models.VersionInterface
getVersion
in class com.sas.util.xmlpersist.impl.BaseAbstractPersistence
protected final com.sas.util.UsageVersion getMaxVersion() throws java.text.ParseException
java.text.ParseException
public final com.sas.uiconfig.ApplicationContext getApplicationContext()
getApplicationContext
in interface com.sas.uiconfig.ContextEnabledObject
public final void setApplicationContext(com.sas.uiconfig.ApplicationContext applicationContext)
setApplicationContext
in interface com.sas.uiconfig.ContextEnabledObject
public final com.sas.storage.editableproperties.PropertyList getSubstitutionProperties() throws com.sas.storage.editableproperties.UnexpectedSubstitutionException
getSubstitutionProperties
in interface com.sas.storage.editableproperties.SubstitutionProperties
com.sas.storage.editableproperties.UnexpectedSubstitutionException
- for unexpected error conditions.SubstitutionProperties.getSubstitutionProperties()
public final void setSubstitutionProperties(@NotNull com.sas.storage.editableproperties.PropertyMap map) throws com.sas.storage.editableproperties.UnexpectedSubstitutionException
SubstitutionProperties
setSubstitutionProperties
in interface com.sas.storage.editableproperties.SubstitutionProperties
map
- - map containing localized properties
com.sas.storage.editableproperties.UnexpectedSubstitutionException
- for unexpected error conditions.
|
Components |
|
| |||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |