18 lines
956 B
Java
18 lines
956 B
Java
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);
|
|
}
|