33 lines
688 B
Java
33 lines
688 B
Java
package com.honeywell.honeywellXL10NextGen.networkInterface;
|
|
|
|
import com.honeywell.honeywellXL10NextGen.points.BIOPointInterface;
|
|
import javax.baja.sys.BIcon;
|
|
import javax.baja.sys.Context;
|
|
import javax.baja.sys.Property;
|
|
|
|
public interface INetworkObject {
|
|
boolean getBObjectModified();
|
|
|
|
String getContainerString();
|
|
|
|
String getDisplayName(Context context);
|
|
|
|
BIOPointInterface getField(String str);
|
|
|
|
double getFieldValue(String str);
|
|
|
|
Property[] getFields();
|
|
|
|
BIcon getIcon();
|
|
|
|
String getObjectCategory();
|
|
|
|
String getStructName();
|
|
|
|
void setBObjectModified(boolean z);
|
|
|
|
void setObjectCategory(String str);
|
|
|
|
void setStructName(String str);
|
|
}
|