Package | Description |
---|---|
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 |
Provides the classes for performing actions on OSM primitives using Visitor design pattern.
|
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.mappaint.mapcss |
Drawing system based on MapCSS map styles.
|
org.openstreetmap.josm.io |
Provides the classes for JOSM input/output support.
|
Modifier and Type | Method and Description |
---|---|
void |
Way.accept(PrimitiveVisitor visitor) |
void |
Relation.accept(PrimitiveVisitor visitor) |
void |
RelationData.accept(PrimitiveVisitor visitor) |
void |
WayData.accept(PrimitiveVisitor visitor) |
void |
Node.accept(PrimitiveVisitor visitor) |
void |
NodeData.accept(PrimitiveVisitor visitor) |
void |
IPrimitive.accept(PrimitiveVisitor visitor)
Makes the given visitor visit this primitive.
|
void |
PrimitiveData.visitReferrers(PrimitiveVisitor visitor) |
void |
OsmPrimitive.visitReferrers(PrimitiveVisitor visitor) |
void |
IPrimitive.visitReferrers(PrimitiveVisitor visitor)
Visits
visitor for all referrers. |
Modifier and Type | Class and Description |
---|---|
class |
BoundingXYVisitor
Calculates the total bounding rectangle of a series of
OsmPrimitive objects, using the
EastNorth values as reference. |
Modifier and Type | Class and Description |
---|---|
class |
ComputeStyleListWorker
Helper to compute style list.
|
class |
WireframeMapRenderer
A map renderer that paints a simple scheme of every primitive it visits to a
previous set graphic environment.
|
Modifier and Type | Class and Description |
---|---|
static class |
ValidatorDialog.ValidatorBoundingXYVisitor
A visitor that is used to compute the bounds of an error.
|
Modifier and Type | Class and Description |
---|---|
private static class |
Selector.ChildOrParentSelector.AbstractFinder |
private class |
Selector.ChildOrParentSelector.ContainsFinder
Finds elements which are inside the right element, collects those in
children |
private class |
Selector.ChildOrParentSelector.CrossingFinder |
private class |
Selector.ChildOrParentSelector.InsideOrEqualFinder
Finds elements which are inside the left element, or in other words, it finds elements enclosing e.osm.
|
private class |
Selector.ChildOrParentSelector.MatchingReferrerFinder
Finds the first referrer matching
Selector.ChildOrParentSelector.left |
private class |
Selector.ChildOrParentSelector.MultipolygonOpenEndFinder |
Modifier and Type | Field and Description |
---|---|
private PrimitiveVisitor |
Selector.ChildOrParentSelector.MultipolygonOpenEndFinder.innerVisitor |
Modifier and Type | Class and Description |
---|---|
class |
OsmWriter
Save the dataset into a stream as osm intern xml format.
|