Package ch.fork.AdHocRailway.ui.turnouts

Examples of ch.fork.AdHocRailway.ui.turnouts.StaticTurnoutWidget


        TurnoutControlIface turnoutControl = AdHocRailway.getInstance()
                .getTurnoutControl();

        if (obj instanceof Turnout) {
            Turnout turnout = (Turnout) obj;
            w = new StaticTurnoutWidget(turnout,
                    turnoutControl.getTurnoutState(turnout));
        } else if (obj instanceof Route) {
            w = new RouteWidget((Route) obj);
        } else {
            return;
View Full Code Here

TOP

Related Classes of ch.fork.AdHocRailway.ui.turnouts.StaticTurnoutWidget

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.