39 lines
788 B
Java
39 lines
788 B
Java
package com.honeywell.ascot.device;
|
|
|
|
import javax.baja.gx.BEllipseGeom;
|
|
import javax.baja.gx.BLineGeom;
|
|
import javax.baja.gx.BRectGeom;
|
|
import javax.baja.ui.BLayout;
|
|
|
|
public interface IWiringInfo {
|
|
BRectGeom getEquipment(int i);
|
|
|
|
BLineGeom[] getEquipmentConnector(int i);
|
|
|
|
BRectGeom getSylkBusBlocks();
|
|
|
|
BLineGeom[] getSylkBusConnectors();
|
|
|
|
BRectGeom getZeleny1Block();
|
|
|
|
BLineGeom[] getZeleny1Connectors();
|
|
|
|
BEllipseGeom[] getZeleny1Knobs();
|
|
|
|
BRectGeom getZeleny2Block();
|
|
|
|
BLineGeom[] getZeleny2Connectors();
|
|
|
|
BEllipseGeom[] getZeleny2Knobs();
|
|
|
|
BRectGeom getZelenyBlock(int i);
|
|
|
|
BLayout getZelenyCenterLayout(int i);
|
|
|
|
BLayout getZelenyHumLabelLayout(int i);
|
|
|
|
BLayout getZelenyTempLabelLayout(int i);
|
|
|
|
BRectGeom getZioBlock();
|
|
}
|