Package | Description |
---|---|
org.openstreetmap.josm.actions.search |
Provides the classes for JOSM
search action . |
org.openstreetmap.josm.data.osm |
Provides the classes for OSM data:
Primitives :
Node ,
Way ,
Relation
Users
Tags
Changesets
Utilities classes
|
org.openstreetmap.josm.data.osm.visitor.paint |
Provides the classes for painting (rendering) OSM primitives on the map.
|
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 else
|
org.openstreetmap.josm.gui.layer |
Provides classes for handling the different kinds of map layers.
|
Modifier and Type | Field and Description |
---|---|
private OsmData<?,?,?,?> |
SearchAction.SearchTask.ds |
Modifier and Type | Method and Description |
---|---|
private static SearchAction.SearchTask |
SearchAction.SearchTask.newSearchTask(SearchSetting setting,
OsmData<?,?,?,?> ds,
SearchAction.SearchReceiver resultReceiver)
Create a new search task for the given search setting.
|
void |
SearchAction.SearchReceiver.receiveSearchResult(OsmData<?,?,?,?> ds,
java.util.Collection<IPrimitive> result,
int foundMatches,
SearchSetting setting,
java.awt.Component parent)
Receive the search result
|
void |
SearchAction.SelectSearchReceiver.receiveSearchResult(OsmData<?,?,?,?> ds,
java.util.Collection<IPrimitive> result,
int foundMatches,
SearchSetting setting,
java.awt.Component parent) |
void |
SearchAction.CapturingSearchReceiver.receiveSearchResult(OsmData<?,?,?,?> ds,
java.util.Collection<IPrimitive> result,
int foundMatches,
SearchSetting setting,
java.awt.Component parent) |
Constructor and Description |
---|
SearchTask(OsmData<?,?,?,?> ds,
SearchSetting setting,
java.util.Collection<IPrimitive> selection,
java.util.function.Predicate<IPrimitive> predicate,
SearchAction.SearchReceiver resultReceiver) |
Modifier and Type | Class and Description |
---|---|
class |
DataSet
DataSet is the data behind the application.
|
Modifier and Type | Method and Description |
---|---|
OsmData<?,?,?,?> |
IPrimitive.getDataSet()
Returns the parent data set of this primitive.
|
OsmData<?,?,?,?> |
PrimitiveData.getDataSet() |
Modifier and Type | Method and Description |
---|---|
void |
AbstractMapRenderer.drawVirtualNodes(OsmData<?,?,?,?> data,
BBox bbox)
Draws virtual nodes.
|
private void |
StyledMapRenderer.paintWithLock(OsmData<?,?,?,?> data,
boolean renderVirtualNodes,
RenderBenchmarkCollector benchmark,
BBox bbox) |
void |
WireframeMapRenderer.render(OsmData<?,?,?,?> data,
boolean virtual,
Bounds bounds) |
void |
Rendering.render(OsmData<?,?,?,?> data,
boolean renderVirtualNodes,
Bounds bbox)
Renders the OSM data in
data |
void |
StyledMapRenderer.render(OsmData<?,?,?,?> data,
boolean renderVirtualNodes,
Bounds bounds) |
Modifier and Type | Field and Description |
---|---|
private OsmData<?,?,?,?> |
InspectPrimitiveDataText.ds |
Modifier and Type | Method and Description |
---|---|
protected static java.lang.String |
InspectPrimitiveDialog.buildDataText(OsmData<?,?,?,?> data,
java.util.List<IPrimitive> primitives) |
protected void |
RelationListDialog.initFromData(OsmData<?,?,?,?> data)
Initializes the relation list dialog from a dataset.
|
Constructor and Description |
---|
InspectPrimitiveDataText(OsmData<?,?,?,?> ds) |
InspectPrimitiveDialog(java.util.Collection<? extends IPrimitive> primitives,
OsmData<?,?,?,?> data)
Constructs a new
InspectPrimitiveDialog . |
Modifier and Type | Method and Description |
---|---|
OsmData<?,?,?,?> |
MainLayerManager.getActiveData()
Gets the data set of the active data layer.
|
abstract OsmData<?,?,?,?> |
AbstractOsmDataLayer.getDataSet()
Returns the
OsmData behind this layer. |