Uses of Interface
org.openstreetmap.josm.data.osm.DataSelectionListener
-
Packages that use DataSelectionListener Package Description org.openstreetmap.josm.actions Provides the classes for JOSM user actions.org.openstreetmap.josm.actions.mapmode Provides the classes for JOSMmap modes
.org.openstreetmap.josm.actions.relation Provides the classes for JOSM actions that work withrelations
.org.openstreetmap.josm.data.osm Provides the classes for OSM data:Primitives
:Node
,Way
,Relation
Users
Tags
Changesets
Utilities classesorg.openstreetmap.josm.data.osm.event Provides the classes for OSM dataset events.org.openstreetmap.josm.data.osm.visitor.paint.relations Provides the classes for painting and cachingMultipolygon
relations.org.openstreetmap.josm.data.vector org.openstreetmap.josm.gui Provides the classes for JOSM graphical user interface.org.openstreetmap.josm.gui.dialogs Provides three kinds of dialogs: Toggle dialogs on the right side of the GUI, that can be turned on, off, attached or detached from the GUI Changeset dialog based on a standalone implementation, dedicated to OSM changesets management Extended dialogs for everything elseorg.openstreetmap.josm.gui.dialogs.changeset Standalone dialog allowing to handle OSM changesets (query and display them).org.openstreetmap.josm.gui.dialogs.properties Toggle dialog allowing to display/edit tags and relation memberships of currently selected OSM objects.org.openstreetmap.josm.gui.dialogs.relation Toggle dialog allowing to display currently loaded relations and perform operations on them.org.openstreetmap.josm.gui.layer Provides classes for handling the different kinds of map layers.org.openstreetmap.josm.gui.layer.geoimage Provides classes for handling layers displaying geotagged pictures.org.openstreetmap.josm.gui.preferences.advanced Provides classes for handling advanced preferences.org.openstreetmap.josm.gui.tagging.presets Provides classes for handling tagging presets. -
-
Uses of DataSelectionListener in org.openstreetmap.josm.actions
Classes in org.openstreetmap.josm.actions that implement DataSelectionListener Modifier and Type Class Description protected class
JosmAction.SelectionChangeAdapter
Adapter for selection change events. -
Uses of DataSelectionListener in org.openstreetmap.josm.actions.mapmode
Classes in org.openstreetmap.josm.actions.mapmode that implement DataSelectionListener Modifier and Type Class Description class
DrawAction
Mapmode to add nodes, create and extend ways.class
ImproveWayAccuracyAction
A special map mode that is optimized for improving way geometry. -
Uses of DataSelectionListener in org.openstreetmap.josm.actions.relation
Classes in org.openstreetmap.josm.actions.relation that implement DataSelectionListener Modifier and Type Class Description class
AddSelectionToRelations
Add all objects selected in the current dataset after the last member of relation(s). -
Uses of DataSelectionListener in org.openstreetmap.josm.data.osm
Fields in org.openstreetmap.josm.data.osm with type parameters of type DataSelectionListener Modifier and Type Field Description private ListenerList<DataSelectionListener>
DataSet. selectionListeners
A list of listeners that listen to selection changes on this layer.Methods in org.openstreetmap.josm.data.osm with parameters of type DataSelectionListener Modifier and Type Method Description void
DataSet. addSelectionListener(DataSelectionListener listener)
void
OsmData. addSelectionListener(DataSelectionListener listener)
Add a listener that listens to selection changes in this specific data set.void
DataSet. removeSelectionListener(DataSelectionListener listener)
void
OsmData. removeSelectionListener(DataSelectionListener listener)
Remove a listener that listens to selection changes in this specific data set. -
Uses of DataSelectionListener in org.openstreetmap.josm.data.osm.event
Classes in org.openstreetmap.josm.data.osm.event that implement DataSelectionListener Modifier and Type Class Description class
SelectionEventManager
Similar likeDatasetEventManager
, just for selection events.Fields in org.openstreetmap.josm.data.osm.event declared as DataSelectionListener Modifier and Type Field Description private DataSelectionListener
SelectionEventManager.DataListenerInfo. listener
Methods in org.openstreetmap.josm.data.osm.event with parameters of type DataSelectionListener Modifier and Type Method Description void
SelectionEventManager. addSelectionListener(DataSelectionListener listener)
Adds a selection listener that gets notified for selections immediately.void
SelectionEventManager. addSelectionListenerForEdt(DataSelectionListener listener)
Adds a selection listener that gets notified for selections later in the EDT thread.void
SelectionEventManager. removeSelectionListener(DataSelectionListener listener)
Unregisters aDataSelectionListener
.Constructors in org.openstreetmap.josm.data.osm.event with parameters of type DataSelectionListener Constructor Description DataListenerInfo(DataSelectionListener listener)
-
Uses of DataSelectionListener in org.openstreetmap.josm.data.osm.visitor.paint.relations
Classes in org.openstreetmap.josm.data.osm.visitor.paint.relations that implement DataSelectionListener Modifier and Type Class Description class
MultipolygonCache
A memory cache forMultipolygon
objects. -
Uses of DataSelectionListener in org.openstreetmap.josm.data.vector
Fields in org.openstreetmap.josm.data.vector with type parameters of type DataSelectionListener Modifier and Type Field Description private ListenerList<DataSelectionListener>
VectorDataSet. dataSelectionListenerListenerList
Methods in org.openstreetmap.josm.data.vector with parameters of type DataSelectionListener Modifier and Type Method Description void
VectorDataSet. addSelectionListener(DataSelectionListener listener)
void
VectorDataSet. removeSelectionListener(DataSelectionListener listener)
-
Uses of DataSelectionListener in org.openstreetmap.josm.gui
Classes in org.openstreetmap.josm.gui that implement DataSelectionListener Modifier and Type Class Description class
MapStatus
A component that manages some status information display about the map.Fields in org.openstreetmap.josm.gui declared as DataSelectionListener Modifier and Type Field Description private DataSelectionListener
MapView. repaintSelectionChangedListener
-
Uses of DataSelectionListener in org.openstreetmap.josm.gui.dialogs
Classes in org.openstreetmap.josm.gui.dialogs that implement DataSelectionListener Modifier and Type Class Description class
ConflictDialog
This dialog displays theConflictCollection
of the activeOsmDataLayer
in a toggle dialog on the right of the main frame.(package private) static class
SelectionListDialog.SelectionListModel
The list model for the list of OSM primitives in the current JOSM selection.(package private) class
SelectionListDialog.ShowHistoryAction
The action for showing history information of the current history item.class
UserListDialog
Displays a dialog with all users who have last edited something in the selection area, along with the number of objects.class
ValidatorDialog
A small tool dialog for displaying the current errors. -
Uses of DataSelectionListener in org.openstreetmap.josm.gui.dialogs.changeset
Classes in org.openstreetmap.josm.gui.dialogs.changeset that implement DataSelectionListener Modifier and Type Class Description class
ChangesetInSelectionListModel
A table of changesets that displays the ones that are used by the primitives in the current selection. -
Uses of DataSelectionListener in org.openstreetmap.josm.gui.dialogs.properties
Classes in org.openstreetmap.josm.gui.dialogs.properties that implement DataSelectionListener Modifier and Type Class Description class
PropertiesDialog
This dialog displays the tags of the current selected primitives. -
Uses of DataSelectionListener in org.openstreetmap.josm.gui.dialogs.relation
Classes in org.openstreetmap.josm.gui.dialogs.relation that implement DataSelectionListener Modifier and Type Class Description class
MemberTableModel
This is the base model used for theMemberTable
.class
SelectionTableModel
This table shows the primitives that are currently selected in the main OSM view. -
Uses of DataSelectionListener in org.openstreetmap.josm.gui.layer
Classes in org.openstreetmap.josm.gui.layer that implement DataSelectionListener Modifier and Type Class Description class
OsmDataLayer
A layer that holds OSM data from a specific dataset. -
Uses of DataSelectionListener in org.openstreetmap.josm.gui.layer.geoimage
Classes in org.openstreetmap.josm.gui.layer.geoimage that implement DataSelectionListener Modifier and Type Class Description class
CorrelationSupportLayer
A support layer meant to be modified by the user to provide real-time images correlation. -
Uses of DataSelectionListener in org.openstreetmap.josm.gui.preferences.advanced
Classes in org.openstreetmap.josm.gui.preferences.advanced that implement DataSelectionListener Modifier and Type Class Description private static class
AdvancedPreference.UnclearableOsmDataLayer
-
Uses of DataSelectionListener in org.openstreetmap.josm.gui.tagging.presets
Classes in org.openstreetmap.josm.gui.tagging.presets that implement DataSelectionListener Modifier and Type Class Description class
TaggingPresetSelector
GUI component to select tagging preset: the list with filter and two checkboxes
-