18 lines
587 B
Java
18 lines
587 B
Java
package com.honeywell.honeywellXL10NextGen.xl10Controller;
|
|
|
|
import com.honeywell.honeywellXL10NextGen.functionalBlocks.BHoneywellComponent;
|
|
|
|
public interface IFunctionBlockConfig {
|
|
short getConfig1(BHoneywellComponent bHoneywellComponent);
|
|
|
|
short getConfig2(BHoneywellComponent bHoneywellComponent);
|
|
|
|
short getConfig3(BHoneywellComponent bHoneywellComponent);
|
|
|
|
void setConfig1(BHoneywellComponent bHoneywellComponent, byte b);
|
|
|
|
void setConfig2(BHoneywellComponent bHoneywellComponent, byte b);
|
|
|
|
void setConfig3(BHoneywellComponent bHoneywellComponent, byte b);
|
|
}
|