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,9 @@
package com.honeywell.ascot.beans.io;
import com.honeywell.ascot.beans.BHonInteger;
public interface IFourPinIO extends IOInterface, IThreePinIO {
BHonInteger getPin4();
void setPin4(BHonInteger bHonInteger);
}
@@ -0,0 +1,20 @@
package com.honeywell.ascot.beans.io;
import com.honeywell.ascot.beans.BHonInteger;
public interface IOInterface {
public static final String PIN_1_NAME = "pin";
public static final String PIN_2_NAME = "pin2";
public static final String PIN_3_NAME = "pin3";
public static final String PIN_4_NAME = "pin4";
void copyTo(IOInterface iOInterface);
BHonInteger getPin();
String getSelectionBeanRef();
boolean isPinChanged(IOInterface iOInterface);
void setPin(BHonInteger bHonInteger);
}
@@ -0,0 +1,13 @@
package com.honeywell.ascot.beans.io;
import com.honeywell.ascot.beans.BHonInteger;
public interface IThreePinIO extends IOInterface {
BHonInteger getPin2();
BHonInteger getPin3();
void setPin2(BHonInteger bHonInteger);
void setPin3(BHonInteger bHonInteger);
}
@@ -0,0 +1,9 @@
package com.honeywell.ascot.beans.io;
import com.honeywell.ascot.beans.BHonInteger;
public interface ITwoPinIO extends IOInterface {
BHonInteger getPin2();
void setPin2(BHonInteger bHonInteger);
}