Uses of Class
org.openstreetmap.josm.tools.ListenerList
-
Packages that use ListenerList Package Description org.openstreetmap.josm.actions Provides the classes for JOSM user actions.org.openstreetmap.josm.data Provides the classes for JOSM managed data.org.openstreetmap.josm.data.gpx Provides the classes for JOSMGPX data
(points, tracks, routes).org.openstreetmap.josm.data.imagery.vectortile.mapbox org.openstreetmap.josm.data.osm Provides the classes for OSM data:Primitives
:Node
,Way
,Relation
Users
Tags
Changesets
Utilities classesorg.openstreetmap.josm.data.vector org.openstreetmap.josm.gui.dialogs.validator Toggle dialog allowing to launch data validation and display validation results (errors and warnings).org.openstreetmap.josm.gui.download Provides GUI classes for the download dialog.org.openstreetmap.josm.gui.mappaint Drawing system allowing to display and render OSM map data in a user-friendly and customizable way, through map styles.
Two implementations are provided: XML: this was the system used by default JOSM map style for a long time.org.openstreetmap.josm.gui.tagging.presets Provides classes for handling tagging presets.org.openstreetmap.josm.gui.util Provides GUI utility classes.org.openstreetmap.josm.io Provides the classes for JOSM input/output support.org.openstreetmap.josm.io.audio Provides the classes for Audio mapping features.org.openstreetmap.josm.tools Provides the classes for various utilities and tools called from all other packages. -
-
Uses of ListenerList in org.openstreetmap.josm.actions
Fields in org.openstreetmap.josm.actions declared as ListenerList Modifier and Type Field Description private static ListenerList<ExpertToggleAction.ExpertModeChangeListener>
ExpertToggleAction. listeners
private static ListenerList<Component>
ExpertToggleAction. visibilityToggleListeners
-
Uses of ListenerList in org.openstreetmap.josm.data
Fields in org.openstreetmap.josm.data declared as ListenerList Modifier and Type Field Description private ListenerList<ImageData.ImageDataUpdateListener>
ImageData. listeners
private ListenerList<PreferenceChangedListener>
Preferences. listeners
private ListenerList<UserIdentityManager.UserIdentityListener>
UserIdentityManager. listeners
Fields in org.openstreetmap.josm.data with type parameters of type ListenerList Modifier and Type Field Description private HashMap<String,ListenerList<PreferenceChangedListener>>
Preferences. keyListeners
Methods in org.openstreetmap.josm.data that return ListenerList Modifier and Type Method Description private ListenerList<PreferenceChangedListener>
Preferences. listenersForKey(String key)
-
Uses of ListenerList in org.openstreetmap.josm.data.gpx
Fields in org.openstreetmap.josm.data.gpx declared as ListenerList Modifier and Type Field Description private ListenerList<GpxData.GpxDataChangeListener>
GpxData. listeners
private ListenerList<IGpxTrack.GpxTrackChangeListener>
GpxTrack. listeners
-
Uses of ListenerList in org.openstreetmap.josm.data.imagery.vectortile.mapbox
Fields in org.openstreetmap.josm.data.imagery.vectortile.mapbox declared as ListenerList Modifier and Type Field Description private ListenerList<MVTTile.TileListener>
MVTTile. listenerList
-
Uses of ListenerList in org.openstreetmap.josm.data.osm
Fields in org.openstreetmap.josm.data.osm declared as ListenerList Modifier and Type Field Description private ListenerList<DataSourceListener>
DataSet. dataSourceListeners
A list of listeners that listen to DataSource changes on this layerprivate ListenerList<HighlightUpdateListener>
DataSet. highlightUpdateListeners
private ListenerList<NoteData.NoteDataUpdateListener>
NoteData. listeners
private ListenerList<DataSelectionListener>
DataSet. selectionListeners
A list of listeners that listen to selection changes on this layer. -
Uses of ListenerList in org.openstreetmap.josm.data.vector
Fields in org.openstreetmap.josm.data.vector declared as ListenerList Modifier and Type Field Description private ListenerList<DataSelectionListener>
VectorDataSet. dataSelectionListenerListenerList
private ListenerList<HighlightUpdateListener>
VectorDataSet. highlightUpdateListenerListenerList
private ListenerList<IDataSelectionListener<VectorPrimitive,VectorNode,VectorWay,VectorRelation,VectorDataSet>>
VectorDataSet. listeners
-
Uses of ListenerList in org.openstreetmap.josm.gui.dialogs.validator
Fields in org.openstreetmap.josm.gui.dialogs.validator declared as ListenerList Modifier and Type Field Description private ListenerList<Runnable>
ValidatorTreePanel. invalidationListeners
-
Uses of ListenerList in org.openstreetmap.josm.gui.download
Fields in org.openstreetmap.josm.gui.download declared as ListenerList Modifier and Type Field Description private static ListenerList<DownloadSourceListener>
DownloadDialog. downloadSourcesListeners
-
Uses of ListenerList in org.openstreetmap.josm.gui.mappaint
Fields in org.openstreetmap.josm.gui.mappaint declared as ListenerList Modifier and Type Field Description private static ListenerList<MapPaintStyles.MapPaintStylesUpdateListener>
MapPaintStyles. listeners
-
Uses of ListenerList in org.openstreetmap.josm.gui.tagging.presets
Fields in org.openstreetmap.josm.gui.tagging.presets declared as ListenerList Modifier and Type Field Description private ListenerList<TaggingPresetItemGuiSupport.ChangeListener>
TaggingPresetItemGuiSupport. listeners
-
Uses of ListenerList in org.openstreetmap.josm.gui.util
Fields in org.openstreetmap.josm.gui.util declared as ListenerList Modifier and Type Field Description private ListenerList<ModifierExListener>
AdvancedKeyPressDetector. modifierExListeners
-
Uses of ListenerList in org.openstreetmap.josm.io
Fields in org.openstreetmap.josm.io declared as ListenerList Modifier and Type Field Description private static ListenerList<OsmApi.OsmApiInitializationListener>
OsmApi. listeners
-
Uses of ListenerList in org.openstreetmap.josm.io.audio
Fields in org.openstreetmap.josm.io.audio declared as ListenerList Modifier and Type Field Description private ListenerList<AudioListener>
JavaSoundPlayer. listeners
-
Uses of ListenerList in org.openstreetmap.josm.tools
Subclasses of ListenerList in org.openstreetmap.josm.tools Modifier and Type Class Description static class
ListenerList.TracingListenerList<T>
This is a specialListenerList
that traces calls to the add/remove methods.private static class
ListenerList.UncheckedListenerList<T>
Methods in org.openstreetmap.josm.tools that return ListenerList Modifier and Type Method Description static <T> ListenerList<T>
ListenerList. create()
Create a new listener liststatic <T> ListenerList<T>
ListenerList. createUnchecked()
Creates a new listener list that does not fail if listeners are added or removed twice.
-