use of com.prosysopc.ua.nodes.UaVariable in project FAAAST-Service by FraunhoferIOSB.
the class AASDataSpecificationIEC61360TypeImplBase method getSymbol.
@Optional
@Override
public String getSymbol() {
UaVariable node = getSymbolNode();
if (node == null) {
return null;
}
Object value = node.getValue().getValue().getValue();
return (String) value;
}
use of com.prosysopc.ua.nodes.UaVariable in project FAAAST-Service by FraunhoferIOSB.
the class AASDataSpecificationIEC61360TypeImplBase method setLevelType.
@Optional
@Override
public void setLevelType(AASLevelTypeDataType value) throws StatusException {
UaVariable node = getLevelTypeNode();
if (node == null) {
throw new RuntimeException("Setting LevelType failed, the Optional node does not exist)");
}
node.setValue(value);
}
use of com.prosysopc.ua.nodes.UaVariable in project FAAAST-Service by FraunhoferIOSB.
the class AASIdentifierTypeNodeBase method getId.
@Mandatory
@Override
public String getId() {
UaVariable node = getIdNode();
if (node == null) {
throw new RuntimeException("Mandatory node Id does not exist");
}
Object value = node.getValue().getValue().getValue();
return (String) value;
}
use of com.prosysopc.ua.nodes.UaVariable in project FAAAST-Service by FraunhoferIOSB.
the class AASIrdiConceptDescriptionTypeNodeBase method getCategory.
@Mandatory
@Override
public String getCategory() {
UaVariable node = getCategoryNode();
if (node == null) {
throw new RuntimeException("Mandatory node Category does not exist");
}
Object value = node.getValue().getValue().getValue();
return (String) value;
}
use of com.prosysopc.ua.nodes.UaVariable in project FAAAST-Service by FraunhoferIOSB.
the class AASMultiLanguagePropertyTypeNodeBase method getValue.
@Optional
@Override
public LocalizedText[] getValue() {
UaVariable node = getValueNode();
if (node == null) {
return null;
}
Object value = node.getValue().getValue().getValue();
return (LocalizedText[]) value;
}
Aggregations