link start!

This commit is contained in:
cherubin
2026-03-17 13:31:18 -07:00
commit 08abe87cfb
5910 changed files with 386288 additions and 0 deletions
@@ -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);
}
@@ -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);
}