18 lines
277 B
Java
18 lines
277 B
Java
package com.tridium.opc.jni.client.da;
|
|
|
|
public interface BrowseResult {
|
|
int getDataType();
|
|
|
|
String getId();
|
|
|
|
OpcItem getItem(OpcItemProperties opcItemProperties);
|
|
|
|
String getName();
|
|
|
|
boolean isItem();
|
|
|
|
boolean isReadable();
|
|
|
|
boolean isWritable();
|
|
}
|