Package com.zerog.ia.auto.project
Class KeyedData
- java.lang.Object
-
- com.zerog.ia.auto.project.ProjectObject
-
- com.zerog.ia.auto.project.KeyedData
-
- All Implemented Interfaces:
Referenceable
- Direct Known Subclasses:
DependencyProperty
,EditVariableProperty
,LAXProperty
,SearchAndReplaceKeyedData
,VariableKeyedData
,VariableKeyedDataBiDi
,VariableKeyedDataNonBiDi
public class KeyedData extends ProjectObject
Represents a property composed by a key and a value.
-
-
Constructor Summary
Constructors Constructor Description KeyedData()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BidiOption
getBidiOption()
The behavior when handling bi-directional text.java.lang.String
getPropertyName()
The property name.java.lang.String
getPropertyValue()
The property value.boolean
isSubstituteUnknownVariable()
Whether to substitute unknown variables or not.void
setBidiOption(BidiOption BidiOption)
The behavior when handling bi-directional text.void
setPropertyName(java.lang.String name)
The property name.void
setPropertyValue(java.lang.String value)
The property value.void
setSubstituteUnknownVariable(boolean substituteUnknownVariable)
Whether to substitute unknown variables or not.-
Methods inherited from class com.zerog.ia.auto.project.ProjectObject
equals, getReferenceID, hashCode, setReferenceID
-
-
-
-
Method Detail
-
setPropertyName
public void setPropertyName(java.lang.String name)
The property name.
-
getPropertyName
public java.lang.String getPropertyName()
The property name.
-
setPropertyValue
public void setPropertyValue(java.lang.String value)
The property value.
-
getPropertyValue
public java.lang.String getPropertyValue()
The property value.
-
isSubstituteUnknownVariable
public boolean isSubstituteUnknownVariable()
Whether to substitute unknown variables or not.
-
setSubstituteUnknownVariable
public void setSubstituteUnknownVariable(boolean substituteUnknownVariable)
Whether to substitute unknown variables or not.
-
getBidiOption
public BidiOption getBidiOption()
The behavior when handling bi-directional text.
-
setBidiOption
public void setBidiOption(BidiOption BidiOption)
The behavior when handling bi-directional text.
-
-