public UnitPort AndThen(UnitPort after) { return(new AndThenImpl(after, this)); }
public AndThenImpl(UnitPort a, UnitPort b) { this.after = a; this.before = b; }