Interface OPCBrowseElement
-
- All Superinterfaces:
java.io.Serializable
- All Known Implementing Classes:
BasicOPCBrowseElement
,ServerBrowseElement
public interface OPCBrowseElement extends java.io.Serializable
This is the browse element supported by the OPC subsystem.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Class<?>
getDatatype()
Gets the data type of the element.java.lang.String
getDescription()
java.lang.String
getDisplayName()
BrowseElementType
getElementType()
ServerNodeId
getServerNodeId()
-
-
-
Method Detail
-
getServerNodeId
ServerNodeId getServerNodeId()
-
getDisplayName
java.lang.String getDisplayName()
-
getDescription
java.lang.String getDescription()
-
getDatatype
java.lang.Class<?> getDatatype()
Gets the data type of the element.XXX NOTE: this really only applies to tags, which are only one type of element. Servers and folders won't use this. In the future, we might make it a property, but right now this is the quickest way to get things up and running.
-
getElementType
BrowseElementType getElementType()
-
-