*/
public SwitchBox3Pos(int ox, int oy, int width, int height) {
super(ox, oy, width, height, POS_1, 1, 3);
// Add gates
addGate(j01 = new CircuitGate(this, Gate.WEST, "J01", true));
addGate(j02 = new CircuitGate(this, Gate.EAST, "J02", true));
addGate(j03 = new CircuitGate(this, Gate.EAST, "J03", true));
addGate(j04 = new CircuitGate(this, Gate.EAST, "J04", true));
}