Package org.openstreetmap.josm.gui.tagging

Examples of org.openstreetmap.josm.gui.tagging.PresetLabel$PresetLabelMouseListener


            setVisible(false);
            return;
        }

        for (final TaggingPreset t : TaggingPreset.getMatchingPresets(types, tags, true)) {
            final JLabel lbl = new PresetLabel(t);
            lbl.addMouseListener(new MouseAdapter() {
                @Override
                public void mouseClicked(MouseEvent e) {
                    Collection<OsmPrimitive> selection = t.createSelection(presetHandler.getSelection());
                    if (selection == null || selection.isEmpty())
                        return;
View Full Code Here

TOP

Related Classes of org.openstreetmap.josm.gui.tagging.PresetLabel$PresetLabelMouseListener

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.