001// License: GPL. For details, see LICENSE file. 002package org.openstreetmap.josm.gui.mappaint; 003 004import javax.swing.JMenu; 005 006/** 007 * GUI elements for a {@link StyleSetting} class. 008 * @since 12831 009 */ 010public interface StyleSettingGui { 011 012 /** 013 * Adds the menu entry for the corresponding style setting to the menu 014 * @param menu The menu to add the setting to 015 */ 016 void addMenuEntry(JMenu menu); 017 018}