10 lines
222 B
Java
10 lines
222 B
Java
package com.honeywell.ascot.beans.io;
|
|
|
|
import com.honeywell.ascot.beans.BHonInteger;
|
|
|
|
public interface IFourPinIO extends IOInterface, IThreePinIO {
|
|
BHonInteger getPin4();
|
|
|
|
void setPin4(BHonInteger bHonInteger);
|
|
}
|