Package org.chenile.stm.model
Class StateTagDescriptor
java.lang.Object
org.chenile.stm.model.StateTagDescriptor
This object stores the various tags that are supported by the XML configurator along
with their associated properties.
- Author:
- Raja Shankar Kolluru
-
Field Summary
Modifier and TypeFieldDescriptionprivate String
The component name that needs to be instantiated when this tag is encountered.private Class<? extends StateDescriptor>
The descriptor class for this tag.private boolean
Is this tag representing a manual state? (or a view state)private String
Name of the tag -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionClass<? extends StateDescriptor>
getTag()
boolean
void
setComponentName
(String componentName) void
setDescriptorClass
(Class<? extends StateDescriptor> descriptorClass) void
setManualState
(boolean manualState) void
-
Field Details
-
tag
Name of the tag -
componentName
The component name that needs to be instantiated when this tag is encountered. -
manualState
private boolean manualStateIs this tag representing a manual state? (or a view state) -
descriptorClass
The descriptor class for this tag. It should extend StateDescriptor.
-
-
Constructor Details
-
StateTagDescriptor
public StateTagDescriptor()
-
-
Method Details
-
getDescriptorClass
-
setDescriptorClass
-
setTag
-
getTag
-
setComponentName
-
getComponentName
-
setManualState
public void setManualState(boolean manualState) -
isManualState
public boolean isManualState()
-