Package org.openstreetmap.josm.gui.tagging.TaggingPresetItems

Examples of org.openstreetmap.josm.gui.tagging.TaggingPresetItems.Key


        for (TaggingPreset p : relationpresets) {
            boolean matches = true;
            Roles r = null;
            for (TaggingPresetItem i : p.data) {
                if (i instanceof Key) {
                    Key k = (Key) i;
                    if (!k.value.equals(n.get(k.key))) {
                        matches = false;
                        break;
                    }
                } else if (i instanceof Roles) {
View Full Code Here

TOP

Related Classes of org.openstreetmap.josm.gui.tagging.TaggingPresetItems.Key

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.