link start!
This commit is contained in:
@@ -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);
|
||||
}
|
||||
Reference in New Issue
Block a user