Package ch.fork.AdHocRailway.domain.locomotives

Examples of ch.fork.AdHocRailway.domain.locomotives.LocomotiveGroup


        } else if (qName.equals("route")) {
            parseRoute(qName, attributes);
        } else if (qName.equals("routedswitch")) {
            parseRoutedSwitch(qName, attributes);
        } else if (qName.equals("locomotivegroup")) {
            actualLocomotiveGroup = new LocomotiveGroup(0,
                    attributes.getValue("name"));
            locomotivePersistence.addLocomotiveGroup(actualLocomotiveGroup);
        } else if (qName.equals("locomotive")) {
            parseLocomotive(qName, attributes);
        } else if (qName.equals("guiconfigparameter")) {
View Full Code Here

TOP

Related Classes of ch.fork.AdHocRailway.domain.locomotives.LocomotiveGroup

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.