Uses of Interface
org.openstreetmap.josm.data.osm.event.DataSetListener
-
Packages that use DataSetListener 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.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.gui Provides the classes for JOSM graphical user interface.org.openstreetmap.josm.gui.autofilter Provides the classes for automatic filters (filters automatically created on current data).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.relation Toggle dialog allowing to display currently loaded relations and perform operations on them.org.openstreetmap.josm.gui.dialogs.validator Toggle dialog allowing to launch data validation and display validation results (errors and warnings).org.openstreetmap.josm.gui.history Provides GUI classes for handling history of OSM objects.org.openstreetmap.josm.gui.tagging.ac Provides GUI classes for handling autocompletion of tags. -
-
Uses of DataSetListener in org.openstreetmap.josm.actions
Classes in org.openstreetmap.josm.actions that implement DataSetListener Modifier and Type Class Description private class
SplitWayAction.SegmentToKeepSelectionDialog.SplitWayDataSetListener
-
Uses of DataSetListener in org.openstreetmap.josm.actions.mapmode
Classes in org.openstreetmap.josm.actions.mapmode that implement DataSetListener Modifier and Type Class Description class
ImproveWayAccuracyAction
A special map mode that is optimized for improving way geometry. -
Uses of DataSetListener in org.openstreetmap.josm.data.osm
Fields in org.openstreetmap.josm.data.osm with type parameters of type DataSetListener Modifier and Type Field Description private CopyOnWriteArrayList<DataSetListener>
DataSet. listeners
Methods in org.openstreetmap.josm.data.osm with parameters of type DataSetListener Modifier and Type Method Description void
DataSet. addDataSetListener(DataSetListener dsl)
Adds a new data set listener.void
DataSet. removeDataSetListener(DataSetListener dsl)
Removes a data set listener. -
Uses of DataSetListener in org.openstreetmap.josm.data.osm.event
Classes in org.openstreetmap.josm.data.osm.event that implement DataSetListener Modifier and Type Class Description class
DataSetListenerAdapter
Classes that do not wish to implement all methods of DataSetListener may use this class.Fields in org.openstreetmap.josm.data.osm.event declared as DataSetListener Modifier and Type Field Description private DataSetListener
DatasetEventManager.ListenerInfo. listener
private DataSetListener
DatasetEventManager. myListener
Methods in org.openstreetmap.josm.data.osm.event with parameters of type DataSetListener Modifier and Type Method Description void
DatasetEventManager. addDatasetListener(DataSetListener listener, DatasetEventManager.FireMode fireMode)
Register listener, that will receive events from currently active datasetabstract void
AbstractDatasetChangedEvent. fire(DataSetListener listener)
Calls the appropriate method of the listener for this event.void
ChangesetIdChangedEvent. fire(DataSetListener listener)
void
DataChangedEvent. fire(DataSetListener listener)
void
FilterChangedEvent. fire(DataSetListener listener)
void
NodeMovedEvent. fire(DataSetListener listener)
void
PrimitiveFlagsChangedEvent. fire(DataSetListener listener)
void
PrimitivesAddedEvent. fire(DataSetListener listener)
void
PrimitivesRemovedEvent. fire(DataSetListener listener)
void
RelationMembersChangedEvent. fire(DataSetListener listener)
void
TagsChangedEvent. fire(DataSetListener listener)
void
WayNodesChangedEvent. fire(DataSetListener listener)
void
DatasetEventManager. removeDatasetListener(DataSetListener listener)
Unregister listener.Constructors in org.openstreetmap.josm.data.osm.event with parameters of type DataSetListener Constructor Description ListenerInfo(DataSetListener listener, boolean consolidate)
-
Uses of DataSetListener in org.openstreetmap.josm.data.osm.visitor.paint.relations
Classes in org.openstreetmap.josm.data.osm.visitor.paint.relations that implement DataSetListener Modifier and Type Class Description class
MultipolygonCache
A memory cache forMultipolygon
objects. -
Uses of DataSetListener in org.openstreetmap.josm.gui
Classes in org.openstreetmap.josm.gui that implement DataSetListener Modifier and Type Class Description class
MapStatus
A component that manages some status information display about the map. -
Uses of DataSetListener in org.openstreetmap.josm.gui.autofilter
Classes in org.openstreetmap.josm.gui.autofilter that implement DataSetListener Modifier and Type Class Description class
AutoFilterManager
The auto filter manager keeps track of registered auto filter rules and applies the active one on the fly, when the map contents, location or zoom changes. -
Uses of DataSetListener in org.openstreetmap.josm.gui.dialogs
Classes in org.openstreetmap.josm.gui.dialogs that implement DataSetListener Modifier and Type Class Description class
FilterDialog
The filter dialog displays a list of filters that are active on the current edit layer.class
RelationListDialog
A dialog showing all known relations, with buttons to add, edit, and delete them.(package private) static class
SelectionListDialog.SelectionListModel
The list model for the list of OSM primitives in the current JOSM selection. -
Uses of DataSetListener in org.openstreetmap.josm.gui.dialogs.changeset
Classes in org.openstreetmap.josm.gui.dialogs.changeset that implement DataSetListener Modifier and Type Class Description class
ChangesetsInActiveDataLayerListModel
This is the list model for the list of changeset in the current edit layer. -
Uses of DataSetListener in org.openstreetmap.josm.gui.dialogs.relation
Classes in org.openstreetmap.josm.gui.dialogs.relation that implement DataSetListener Modifier and Type Class Description class
MemberTableModel
This is the base model used for theMemberTable
. -
Uses of DataSetListener in org.openstreetmap.josm.gui.dialogs.validator
Classes in org.openstreetmap.josm.gui.dialogs.validator that implement DataSetListener Modifier and Type Class Description class
ValidatorTreePanel
A panel that displays the error tree. -
Uses of DataSetListener in org.openstreetmap.josm.gui.history
Classes in org.openstreetmap.josm.gui.history that implement DataSetListener Modifier and Type Class Description class
HistoryBrowserModel
This is the model used by the history browser. -
Uses of DataSetListener in org.openstreetmap.josm.gui.tagging.ac
Classes in org.openstreetmap.josm.gui.tagging.ac that implement DataSetListener Modifier and Type Class Description class
AutoCompletionManager
AutoCompletionManager holds a cache of keys with a list of possible auto completion values for each key.
-