link start!
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
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);
|
||||
}
|
||||
+17
@@ -0,0 +1,17 @@
|
||||
package com.honeywell.honeywellXL10NextGen.networkInterface.manager;
|
||||
|
||||
import com.honeywell.honeywellXL10NextGen.logicContainers.BIMacro;
|
||||
import com.honeywell.honeywellXL10NextGen.points.BEnumUtil;
|
||||
import com.honeywell.honeywellXL10NextGen.points.BIOPointInterface;
|
||||
import com.honeywell.honeywellXL10NextGen.points.BXL10NextGenPointType;
|
||||
import javax.baja.sys.BComponent;
|
||||
|
||||
public interface INetworkObjectConfgBeanHandler {
|
||||
BComponent getActualBean(BIMacro bIMacro, BIOPointInterface bIOPointInterface, BComponent bComponent);
|
||||
|
||||
BIOPointInterface getObjectConfiguration(BIMacro bIMacro, BXL10NextGenPointType bXL10NextGenPointType, BIOPointInterface bIOPointInterface);
|
||||
|
||||
BIOPointInterface getObjectConfiguration(BIMacro bIMacro, BXL10NextGenPointType bXL10NextGenPointType, String str, String str2, BEnumUtil bEnumUtil, BIOPointInterface bIOPointInterface);
|
||||
|
||||
boolean isInternalUnitOfTypeMSV(BIOPointInterface bIOPointInterface, String str);
|
||||
}
|
||||
Reference in New Issue
Block a user