Package org.openstreetmap.josm.gui.dialogs.ValidatorDialog

Examples of org.openstreetmap.josm.gui.dialogs.ValidatorDialog.ValidatorBoundingXYVisitor


        if (layers.isEmpty()) return null;
        return layers.get(0);
    }

    private BoundingXYVisitor getBoundingBox() {
        BoundingXYVisitor v = "problem".equals(mode) ? new ValidatorBoundingXYVisitor() : new BoundingXYVisitor();

        switch(mode) {
        case "problem":
            TestError error = Main.map.validatorDialog.getSelectedError();
            if (error == null) return null;
View Full Code Here

TOP

Related Classes of org.openstreetmap.josm.gui.dialogs.ValidatorDialog.ValidatorBoundingXYVisitor

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.