link start!
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
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);
|
||||
}
|
||||
Reference in New Issue
Block a user