Examples of PresetLabel


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

            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
Copyright © 2018 www.massapi.com. 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.