Uses of Interface
org.openstreetmap.josm.data.osm.OsmData
-
Packages that use OsmData Package Description org.openstreetmap.josm.actions.search Provides the classes for JOSMsearch action.org.openstreetmap.josm.data.osm Provides the classes for OSM data:Primitives:Node,Way,RelationUsersTagsChangesetsUtilities classesorg.openstreetmap.josm.data.osm.event Provides the classes for OSM dataset events.org.openstreetmap.josm.data.osm.visitor.paint Provides the classes for painting (rendering) OSM primitives on the map.org.openstreetmap.josm.data.vector Provides classes for vector data like Mapbox Vector Tiles.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.layer Provides classes for handling the different kinds of map layers. -
-
Uses of OsmData in org.openstreetmap.josm.actions.search
Fields in org.openstreetmap.josm.actions.search declared as OsmData Modifier and Type Field Description private OsmData<?,?,?,?>SearchAction.SearchTask. dsMethods in org.openstreetmap.josm.actions.search with parameters of type OsmData Modifier and Type Method Description private static SearchAction.SearchTaskSearchAction.SearchTask. newSearchTask(SearchSetting setting, OsmData<?,?,?,?> ds, SearchAction.SearchReceiver resultReceiver)Create a new search task for the given search setting.voidSearchAction.CapturingSearchReceiver. receiveSearchResult(OsmData<?,?,?,?> ds, java.util.Collection<IPrimitive> result, int foundMatches, SearchSetting setting, java.awt.Component parent)voidSearchAction.SearchReceiver. receiveSearchResult(OsmData<?,?,?,?> ds, java.util.Collection<IPrimitive> result, int foundMatches, SearchSetting setting, java.awt.Component parent)Receive the search resultvoidSearchAction.SelectSearchReceiver. receiveSearchResult(OsmData<?,?,?,?> ds, java.util.Collection<IPrimitive> result, int foundMatches, SearchSetting setting, java.awt.Component parent)Constructors in org.openstreetmap.josm.actions.search with parameters of type OsmData Constructor Description SearchTask(OsmData<?,?,?,?> ds, SearchSetting setting, java.util.Collection<IPrimitive> selection, java.util.function.Predicate<IPrimitive> predicate, SearchAction.SearchReceiver resultReceiver) -
Uses of OsmData in org.openstreetmap.josm.data.osm
Classes in org.openstreetmap.josm.data.osm that implement OsmData Modifier and Type Class Description classDataSetDataSet is the data behind the application.Methods in org.openstreetmap.josm.data.osm that return OsmData Modifier and Type Method Description OsmData<?,?,?,?>IPrimitive. getDataSet()Returns the parent data set of this primitive.OsmData<?,?,?,?>PrimitiveData. getDataSet() -
Uses of OsmData in org.openstreetmap.josm.data.osm.event
Classes in org.openstreetmap.josm.data.osm.event with type parameters of type OsmData Modifier and Type Interface Description interfaceIDataSelectionEventSource<O extends IPrimitive,N extends INode,W extends IWay<N>,R extends IRelation<?>,D extends OsmData<O,N,W,R>>This interface indicates that the class can fireIDataSelectionListener.interfaceIDataSelectionListener<O extends IPrimitive,N extends INode,W extends IWay<N>,R extends IRelation<?>,D extends OsmData<O,N,W,R>>This interface is the same asDataSelectionListener, except it isn'tOsmPrimitivespecific.static classIDataSelectionListener.AbstractSelectionEvent<O extends IPrimitive,N extends INode,W extends IWay<N>,R extends IRelation<?>,D extends OsmData<O,N,W,R>>The base class for selection eventsstatic classIDataSelectionListener.SelectionAddEvent<O extends IPrimitive,N extends INode,W extends IWay<N>,R extends IRelation<?>,D extends OsmData<O,N,W,R>>Primitives are added to the selectionstatic interfaceIDataSelectionListener.SelectionChangeEvent<O extends IPrimitive,N extends INode,W extends IWay<N>,R extends IRelation<?>,D extends OsmData<O,N,W,R>>The event that is fired when the selection changed.static classIDataSelectionListener.SelectionRemoveEvent<O extends IPrimitive,N extends INode,W extends IWay<N>,R extends IRelation<?>,D extends OsmData<O,N,W,R>>Primitives are removed from the selectionstatic classIDataSelectionListener.SelectionReplaceEvent<O extends IPrimitive,N extends INode,W extends IWay<N>,R extends IRelation<?>,D extends OsmData<O,N,W,R>>The selection is replaced by a new selectionstatic classIDataSelectionListener.SelectionToggleEvent<O extends IPrimitive,N extends INode,W extends IWay<N>,R extends IRelation<?>,D extends OsmData<O,N,W,R>>Toggle the selected state of a primitiveFields in org.openstreetmap.josm.data.osm.event declared as OsmData Modifier and Type Field Description private DIDataSelectionListener.AbstractSelectionEvent. source -
Uses of OsmData in org.openstreetmap.josm.data.osm.visitor.paint
Fields in org.openstreetmap.josm.data.osm.visitor.paint declared as OsmData Modifier and Type Field Description private OsmData<?,?,?,?>StyledTiledMapRenderer.TileLoader. dataMethods in org.openstreetmap.josm.data.osm.visitor.paint with parameters of type OsmData Modifier and Type Method Description voidAbstractMapRenderer. drawVirtualNodes(OsmData<?,?,?,?> data, BBox bbox)Draws virtual nodes.private java.awt.image.BufferedImageStyledTiledMapRenderer. generateTiles(OsmData<?,?,?,?> data, java.util.Collection<TileZXY> tiles, int tileSize)Generate tile imagesprivate voidStyledMapRenderer. paintWithLock(OsmData<?,?,?,?> data, boolean renderVirtualNodes, RenderBenchmarkCollector benchmark, BBox bbox)voidRendering. render(OsmData<?,?,?,?> data, boolean renderVirtualNodes, Bounds bbox)Renders the OSM data indatavoidStyledMapRenderer. render(OsmData<?,?,?,?> data, boolean renderVirtualNodes, Bounds bounds)voidStyledTiledMapRenderer. render(OsmData<?,?,?,?> data, boolean renderVirtualNodes, Bounds bounds)voidWireframeMapRenderer. render(OsmData<?,?,?,?> data, boolean virtual, Bounds bounds)Constructors in org.openstreetmap.josm.data.osm.visitor.paint with parameters of type OsmData Constructor Description TileLoader(OsmData<?,?,?,?> data, TileZXY tile, int tileSize, java.util.Collection<StyledTiledMapRenderer.TileLoader> tileCollection)Create a new tile loader -
Uses of OsmData in org.openstreetmap.josm.data.vector
Classes in org.openstreetmap.josm.data.vector that implement OsmData Modifier and Type Class Description classVectorDataSetA data class for Vector Data -
Uses of OsmData in org.openstreetmap.josm.gui.dialogs
Fields in org.openstreetmap.josm.gui.dialogs declared as OsmData Modifier and Type Field Description private OsmData<?,?,?,?>InspectPrimitiveDataText. dsMethods in org.openstreetmap.josm.gui.dialogs with parameters of type OsmData Modifier and Type Method Description protected static java.lang.StringInspectPrimitiveDialog. buildDataText(OsmData<?,?,?,?> data, java.util.List<IPrimitive> primitives)protected voidRelationListDialog. initFromData(OsmData<?,?,?,?> data)Initializes the relation list dialog from a dataset.Constructors in org.openstreetmap.josm.gui.dialogs with parameters of type OsmData Constructor Description InspectPrimitiveDataText(OsmData<?,?,?,?> ds)InspectPrimitiveDialog(java.util.Collection<? extends IPrimitive> primitives, OsmData<?,?,?,?> data)Constructs a newInspectPrimitiveDialog. -
Uses of OsmData in org.openstreetmap.josm.gui.layer
Methods in org.openstreetmap.josm.gui.layer that return OsmData Modifier and Type Method Description OsmData<?,?,?,?>MainLayerManager. getActiveData()Gets the data set of the active data layer.abstract OsmData<?,?,?,?>AbstractOsmDataLayer. getDataSet()Returns theOsmDatabehind this layer.
-