use of org.eclipse.milo.opcua.stack.core.types.builtin.Variant in project milo by eclipse.
the class ProgramStateMachineTypeNode method setCreatable.
@Override
public void setCreatable(Boolean creatable) throws UaException {
PropertyTypeNode node = getCreatableNode();
node.setValue(new Variant(creatable));
}
use of org.eclipse.milo.opcua.stack.core.types.builtin.Variant in project milo by eclipse.
the class ProgramStateMachineTypeNode method setMaxInstanceCount.
@Override
public void setMaxInstanceCount(UInteger maxInstanceCount) throws UaException {
PropertyTypeNode node = getMaxInstanceCountNode();
node.setValue(new Variant(maxInstanceCount));
}
use of org.eclipse.milo.opcua.stack.core.types.builtin.Variant in project milo by eclipse.
the class ProgramStateMachineTypeNode method setInstanceCount.
@Override
public void setInstanceCount(UInteger instanceCount) throws UaException {
PropertyTypeNode node = getInstanceCountNode();
node.setValue(new Variant(instanceCount));
}
use of org.eclipse.milo.opcua.stack.core.types.builtin.Variant in project milo by eclipse.
the class ProgramStateMachineTypeNode method setDeletable.
@Override
public void setDeletable(Boolean deletable) throws UaException {
PropertyTypeNode node = getDeletableNode();
node.setValue(new Variant(deletable));
}
use of org.eclipse.milo.opcua.stack.core.types.builtin.Variant in project milo by eclipse.
the class ProgramTransitionEventTypeNode method setIntermediateResult.
@Override
public void setIntermediateResult(Object intermediateResult) throws UaException {
PropertyTypeNode node = getIntermediateResultNode();
node.setValue(new Variant(intermediateResult));
}
Aggregations