38 lines
880 B
Java
38 lines
880 B
Java
package com.honeywell.lonSpyder.networkInterface;
|
|
|
|
import com.honeywell.honeywellXL10NextGen.networkInterface.INetworkObject;
|
|
import com.honeywell.honeywellXL10NextGen.points.BIOPointInterface;
|
|
import javax.baja.lonworks.londata.BLonInteger;
|
|
import javax.baja.naming.BOrd;
|
|
import javax.baja.sys.BIcon;
|
|
import javax.baja.sys.Context;
|
|
import javax.baja.sys.Property;
|
|
|
|
public interface INetworkVariable extends INetworkObject {
|
|
BOrd getContainerPath();
|
|
|
|
String getContainerString();
|
|
|
|
String getDisplayName(Context context);
|
|
|
|
BIOPointInterface getField(String str);
|
|
|
|
double getFieldValue(String str);
|
|
|
|
Property[] getFields();
|
|
|
|
BIcon getIcon();
|
|
|
|
BLonInteger getNsnvtType();
|
|
|
|
String getNvCategory();
|
|
|
|
String getSnvtName();
|
|
|
|
void setNsnvtType(BLonInteger bLonInteger);
|
|
|
|
void setNvCategory(String str);
|
|
|
|
void setSnvtName(String str);
|
|
}
|