Package org.openstreetmap.josm.gui.layer
Class JumpToMarkerActions
- java.lang.Object
-
- org.openstreetmap.josm.gui.layer.JumpToMarkerActions
-
public final class JumpToMarkerActions extends Object
Manages actions to jump from one marker to the next for layers that show markers (GeoImageLayer
,MarkerLayer
). Registers global multi-key shortcuts and offers actions for the right-click menu of the layers.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description private static class
JumpToMarkerActions.JumpToMarker
static interface
JumpToMarkerActions.JumpToMarkerLayer
Interface for a layer that displays markers and supports jumping from one marker to the next.static class
JumpToMarkerActions.JumpToNextMarker
static class
JumpToMarkerActions.JumpToPreviousMarker
-
Field Summary
Fields Modifier and Type Field Description private static JumpToMarkerActions.JumpToNextMarker
jumpToNextMarkerAction
private static JumpToMarkerActions.JumpToPreviousMarker
jumpToPreviousMarkerAction
-
Constructor Summary
Constructors Modifier Constructor Description private
JumpToMarkerActions()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static void
initialize()
Initialize the actions, register shortcuts.static void
unregisterActions()
Unregister the actions.
-
-
-
Field Detail
-
jumpToNextMarkerAction
private static volatile JumpToMarkerActions.JumpToNextMarker jumpToNextMarkerAction
-
jumpToPreviousMarkerAction
private static volatile JumpToMarkerActions.JumpToPreviousMarker jumpToPreviousMarkerAction
-
-
Constructor Detail
-
JumpToMarkerActions
private JumpToMarkerActions()
-
-
Method Detail
-
initialize
public static void initialize()
Initialize the actions, register shortcuts.
-
unregisterActions
public static void unregisterActions()
Unregister the actions.
-
-