Package | Description |
---|---|
org.openstreetmap.josm.gui.mappaint |
Drawing system allowing to display and render OSM map data in a user-friendly and customizable way, through map styles.
Two implementations are provided: XML: this was the system used by default JOSM map style for a long time. |
org.openstreetmap.josm.gui.mappaint.mapcss |
Drawing system based on MapCSS map styles.
|
Modifier and Type | Field and Description |
---|---|
private Condition.Context |
Environment.context |
Modifier and Type | Method and Description |
---|---|
Condition.Context |
Environment.getContext()
Replies the current context.
|
Modifier and Type | Method and Description |
---|---|
Environment |
Environment.withContext(Condition.Context context)
Creates a clone of this environment, with the specified
Condition.Context . |
Modifier and Type | Method and Description |
---|---|
static Condition.Context |
Condition.Context.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Condition.Context[] |
Condition.Context.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
static Condition.ClassCondition |
Condition.createClassCondition(java.lang.String id,
boolean not,
Condition.Context context) |
static Condition.ExpressionCondition |
Condition.createExpressionCondition(Expression e,
Condition.Context context) |
static Condition |
Condition.createKeyCondition(java.lang.String k,
boolean not,
Condition.KeyMatchType matchType,
Condition.Context context) |
static Condition |
Condition.createKeyValueCondition(java.lang.String k,
java.lang.String v,
Condition.Op op,
Condition.Context context,
boolean considerValAsKey) |
static Condition.PseudoClassCondition |
Condition.createPseudoClassCondition(java.lang.String id,
boolean not,
Condition.Context context) |
static Condition.PseudoClassCondition |
Condition.PseudoClassCondition.createPseudoClassCondition(java.lang.String id,
boolean not,
Condition.Context context) |