Package org.openstreetmap.josm.actions.ReverseWayAction

Examples of org.openstreetmap.josm.actions.ReverseWayAction.ReverseWayResult


        for (WayInPolygon way : ways) {
            actionWays.add(way.way);

            if (!way.insideToTheRight) {
                ReverseWayResult res = ReverseWayAction.reverseWay(way.way);
                Main.main.undoRedo.add(res.getReverseCommand());
                cmdsCount++;
            }
        }

        Pair<Way, Command> result = CombineWayAction.combineWaysWorker(actionWays);
View Full Code Here

TOP

Related Classes of org.openstreetmap.josm.actions.ReverseWayAction.ReverseWayResult

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.