2026-03-17 13:31:18 -07:00

23 lines
771 B
Java

package com.honeywell.honeywellXL10NextGen.functionalBlocks;
import javax.baja.sys.BComponent;
import javax.baja.sys.Slot;
public interface ISpecialBlock {
int checkKnobAddTo(BComponent bComponent, Slot slot, BComponent bComponent2, Slot slot2);
int checkLinkAddFrom(BComponent bComponent, Slot slot, BComponent bComponent2, Slot slot2);
int knobAddedTo(BComponent bComponent, Slot slot, BComponent bComponent2, Slot slot2);
int knobRemovedFrom(BComponent bComponent, Slot slot, BComponent bComponent2, Slot slot2);
int linkAddedFrom(BComponent bComponent, Slot slot, BComponent bComponent2, Slot slot2);
int linkRemovedFrom(BComponent bComponent, Slot slot, BComponent bComponent2, Slot slot2);
void started();
void stopped();
}