Package com.myscript.iink
Class MathVariableDefinitionInfo
java.lang.Object
com.myscript.iink.MathVariableDefinitionInfo
Represents a math variable definition info.
- Since:
- 4.2
-
Field Summary
FieldsModifier and TypeFieldDescription@NotNull StringThe block id the variable is: used by (forAPI), defined by (forBLOCK) or empty (forAPI_GLOBAL).@NotNull MathVariableSourceTypeThe source type associated with the definition.doubleThe value associated with the definition. -
Constructor Summary
ConstructorsConstructorDescriptionMathVariableDefinitionInfo(double value, @NotNull MathVariableSourceType sourceType, @NotNull String blockId) Constructs a MathVariableDefinitionInfoMathVariableDefinitionInfo(@NotNull MathVariableDefinitionInfo other) Copy constructor. -
Method Summary
-
Field Details
-
value
public double valueThe value associated with the definition. -
sourceType
The source type associated with the definition. -
blockId
The block id the variable is: used by (forAPI), defined by (forBLOCK) or empty (forAPI_GLOBAL).
-
-
Constructor Details
-
MathVariableDefinitionInfo
Copy constructor.- Parameters:
other- the math variable definition info to copy.
-
MathVariableDefinitionInfo
public MathVariableDefinitionInfo(double value, @NotNull @NotNull MathVariableSourceType sourceType, @NotNull @NotNull String blockId) Constructs a MathVariableDefinitionInfo- Parameters:
value- the variable value.sourceType- the variable sourceType.blockId- the variable blockId.
-
-
Method Details