10 lines
208 B
Java
10 lines
208 B
Java
package com.honeywell.ascot.beans.io;
|
|
|
|
import com.honeywell.ascot.beans.BHonInteger;
|
|
|
|
public interface ITwoPinIO extends IOInterface {
|
|
BHonInteger getPin2();
|
|
|
|
void setPin2(BHonInteger bHonInteger);
|
|
}
|