14 lines
282 B
Java
14 lines
282 B
Java
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);
|
|
}
|