Changeset 22547 in osm for applications/editors/josm/plugins/graphview/src/org/openstreetmap
- Timestamp:
- 2010-08-03T08:11:51+02:00 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/graphview/src/org/openstreetmap/josm/plugins/graphview/plugin/layer/GraphViewLayer.java
r19054 r22547 3 3 import java.awt.BasicStroke; 4 4 import java.awt.Color; 5 import java.awt.Component;6 5 import java.awt.Graphics; 7 6 import java.awt.Graphics2D; … … 13 12 import java.util.List; 14 13 14 import javax.swing.Action; 15 15 import javax.swing.Icon; 16 import javax.swing.JMenuItem;17 import javax.swing.JSeparator;18 16 19 17 import org.openstreetmap.josm.Main; … … 324 322 325 323 @Override 326 public Component[] getMenuEntries() { 327 return new Component[] { new JMenuItem(LayerListDialog.getInstance().createShowHideLayerAction(this)), 328 new JMenuItem(LayerListDialog.getInstance().createDeleteLayerAction(this)), new JSeparator(), 329 new JMenuItem(new RenameLayerAction(null, this)), new JSeparator(), 330 new JMenuItem(new LayerListPopup.InfoAction(this)) }; 324 public Action[] getMenuEntries() { 325 return new Action[] { 326 LayerListDialog.getInstance().createShowHideLayerAction(), 327 LayerListDialog.getInstance().createDeleteLayerAction(), 328 SeparatorLayerAction.INSTANCE, 329 new RenameLayerAction(null, this), 330 SeparatorLayerAction.INSTANCE, 331 new LayerListPopup.InfoAction(this)}; 331 332 } 332 333
Note:
See TracChangeset
for help on using the changeset viewer.