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 BidiOptiongetBidiOption()The behavior when handling bi-directional text.java.lang.StringgetPropertyName()The property name.java.lang.StringgetPropertyValue()The property value.booleanisSubstituteUnknownVariable()Whether to substitute unknown variables or not.voidsetBidiOption(BidiOption BidiOption)The behavior when handling bi-directional text.voidsetPropertyName(java.lang.String name)The property name.voidsetPropertyValue(java.lang.String value)The property value.voidsetSubstituteUnknownVariable(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.
-
-