Uses of Class
org.openstreetmap.josm.data.osm.event.AbstractDatasetChangedEvent
-
Packages that use AbstractDatasetChangedEvent 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.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.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.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.tagging.ac Provides GUI classes for handling autocompletion of tags. -
-
Uses of AbstractDatasetChangedEvent in org.openstreetmap.josm.actions
Methods in org.openstreetmap.josm.actions with parameters of type AbstractDatasetChangedEvent Modifier and Type Method Description void
SplitWayAction.SegmentToKeepSelectionDialog.SplitWayDataSetListener. otherDatasetChange(AbstractDatasetChangedEvent event)
-
Uses of AbstractDatasetChangedEvent in org.openstreetmap.josm.actions.mapmode
Methods in org.openstreetmap.josm.actions.mapmode with parameters of type AbstractDatasetChangedEvent Modifier and Type Method Description void
ImproveWayAccuracyAction. otherDatasetChange(AbstractDatasetChangedEvent event)
-
Uses of AbstractDatasetChangedEvent in org.openstreetmap.josm.data.osm
Fields in org.openstreetmap.josm.data.osm with type parameters of type AbstractDatasetChangedEvent Modifier and Type Field Description private List<AbstractDatasetChangedEvent>
DataSet. cachedEvents
Methods in org.openstreetmap.josm.data.osm with parameters of type AbstractDatasetChangedEvent Modifier and Type Method Description private void
DataSet. fireEvent(AbstractDatasetChangedEvent event)
private void
DataSet. fireEventToListeners(AbstractDatasetChangedEvent event)
-
Uses of AbstractDatasetChangedEvent in org.openstreetmap.josm.data.osm.event
Subclasses of AbstractDatasetChangedEvent in org.openstreetmap.josm.data.osm.event Modifier and Type Class Description class
ChangesetIdChangedEvent
An event that is triggered when the changeset id has changed for a list of primitives.class
DataChangedEvent
A combined data change event.class
FilterChangedEvent
Represents a change of primitive filter flags.class
NodeMovedEvent
An event that is triggered on a node move (lat/lon change)class
PrimitiveFlagsChangedEvent
Represents a change inAbstractPrimitive.flags
unless covered by a more specific eventclass
PrimitivesAddedEvent
An event that is triggered if primitives have been added to the datasetclass
PrimitivesRemovedEvent
An event that is triggered when primitives were removed from the datasetclass
RelationMembersChangedEvent
An event that is triggered if the members of a single relation have changedclass
TagsChangedEvent
An event that is triggered if the tags of a single primitive have changedclass
WayNodesChangedEvent
An event that is triggered when the nodes of a way have been changed (nodes added, removed or the order was changed)Fields in org.openstreetmap.josm.data.osm.event with type parameters of type AbstractDatasetChangedEvent Modifier and Type Field Description private List<AbstractDatasetChangedEvent>
DataChangedEvent. events
private Queue<AbstractDatasetChangedEvent>
DatasetEventManager. eventsInEDT
Methods in org.openstreetmap.josm.data.osm.event that return types with arguments of type AbstractDatasetChangedEvent Modifier and Type Method Description List<AbstractDatasetChangedEvent>
DataChangedEvent. getEvents()
Returns list of events that caused this DataChangedEvent.Methods in org.openstreetmap.josm.data.osm.event with parameters of type AbstractDatasetChangedEvent Modifier and Type Method Description private static void
DatasetEventManager. fireConsolidatedEvents(List<DatasetEventManager.ListenerInfo> listeners, AbstractDatasetChangedEvent event)
private static void
DatasetEventManager. fireEvents(List<DatasetEventManager.ListenerInfo> listeners, AbstractDatasetChangedEvent event)
void
DataSetListener. otherDatasetChange(AbstractDatasetChangedEvent event)
Minor dataset change, currently only changeset id changed is supported, but can be extended in future.void
DataSetListenerAdapter. otherDatasetChange(AbstractDatasetChangedEvent event)
void
DatasetEventManager. processDatasetEvent(AbstractDatasetChangedEvent event)
void
DataSetListenerAdapter.Listener. processDatasetEvent(AbstractDatasetChangedEvent event)
Called when notified about any type of dataset change event.Constructor parameters in org.openstreetmap.josm.data.osm.event with type arguments of type AbstractDatasetChangedEvent Constructor Description DataChangedEvent(DataSet dataSet, List<AbstractDatasetChangedEvent> events)
Constructs a newDataChangedEvent
-
Uses of AbstractDatasetChangedEvent in org.openstreetmap.josm.data.osm.visitor.paint.relations
-
Uses of AbstractDatasetChangedEvent in org.openstreetmap.josm.gui
Methods in org.openstreetmap.josm.gui with parameters of type AbstractDatasetChangedEvent Modifier and Type Method Description void
MapStatus. otherDatasetChange(AbstractDatasetChangedEvent event)
-
Uses of AbstractDatasetChangedEvent in org.openstreetmap.josm.gui.autofilter
Methods in org.openstreetmap.josm.gui.autofilter with parameters of type AbstractDatasetChangedEvent Modifier and Type Method Description void
AutoFilterManager. otherDatasetChange(AbstractDatasetChangedEvent event)
private void
AutoFilterManager. updateFiltersEvent(AbstractDatasetChangedEvent event, boolean affectedOnly)
-
Uses of AbstractDatasetChangedEvent in org.openstreetmap.josm.gui.dialogs
Methods in org.openstreetmap.josm.gui.dialogs with parameters of type AbstractDatasetChangedEvent Modifier and Type Method Description void
FilterDialog. otherDatasetChange(AbstractDatasetChangedEvent event)
void
RelationListDialog. otherDatasetChange(AbstractDatasetChangedEvent event)
void
SelectionListDialog.SelectionListModel. otherDatasetChange(AbstractDatasetChangedEvent event)
void
ValidatorDialog. processDatasetEvent(AbstractDatasetChangedEvent event)
-
Uses of AbstractDatasetChangedEvent in org.openstreetmap.josm.gui.dialogs.changeset
Methods in org.openstreetmap.josm.gui.dialogs.changeset with parameters of type AbstractDatasetChangedEvent Modifier and Type Method Description void
ChangesetsInActiveDataLayerListModel. otherDatasetChange(AbstractDatasetChangedEvent event)
-
Uses of AbstractDatasetChangedEvent in org.openstreetmap.josm.gui.dialogs.properties
Methods in org.openstreetmap.josm.gui.dialogs.properties with parameters of type AbstractDatasetChangedEvent Modifier and Type Method Description void
PropertiesDialog. processDatasetEvent(AbstractDatasetChangedEvent event)
-
Uses of AbstractDatasetChangedEvent in org.openstreetmap.josm.gui.dialogs.relation
Methods in org.openstreetmap.josm.gui.dialogs.relation with parameters of type AbstractDatasetChangedEvent Modifier and Type Method Description void
MemberTableModel. otherDatasetChange(AbstractDatasetChangedEvent event)
-
Uses of AbstractDatasetChangedEvent in org.openstreetmap.josm.gui.dialogs.validator
Methods in org.openstreetmap.josm.gui.dialogs.validator with parameters of type AbstractDatasetChangedEvent Modifier and Type Method Description void
ValidatorTreePanel. otherDatasetChange(AbstractDatasetChangedEvent event)
-
Uses of AbstractDatasetChangedEvent in org.openstreetmap.josm.gui.history
Methods in org.openstreetmap.josm.gui.history with parameters of type AbstractDatasetChangedEvent Modifier and Type Method Description void
HistoryBrowserModel. otherDatasetChange(AbstractDatasetChangedEvent event)
-
Uses of AbstractDatasetChangedEvent in org.openstreetmap.josm.gui.layer
Methods in org.openstreetmap.josm.gui.layer with parameters of type AbstractDatasetChangedEvent Modifier and Type Method Description void
AutosaveTask. processDatasetEvent(AbstractDatasetChangedEvent event)
void
OsmDataLayer. processDatasetEvent(AbstractDatasetChangedEvent event)
-
Uses of AbstractDatasetChangedEvent in org.openstreetmap.josm.gui.layer.geoimage
Methods in org.openstreetmap.josm.gui.layer.geoimage with parameters of type AbstractDatasetChangedEvent Modifier and Type Method Description void
CorrelationSupportLayer. processDatasetEvent(AbstractDatasetChangedEvent event)
-
Uses of AbstractDatasetChangedEvent in org.openstreetmap.josm.gui.tagging.ac
Methods in org.openstreetmap.josm.gui.tagging.ac with parameters of type AbstractDatasetChangedEvent Modifier and Type Method Description void
AutoCompletionManager. otherDatasetChange(AbstractDatasetChangedEvent event)
-