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 ConditionFactory.ClassCondition |
ConditionFactory.createClassCondition(java.lang.String id,
boolean not,
Condition.Context context)
Create a new class condition
|
static ConditionFactory.ExpressionCondition |
ConditionFactory.createExpressionCondition(Expression e,
Condition.Context context)
Create a new condition that a expression needs to be fulfilled
|
static Condition |
ConditionFactory.createKeyCondition(java.lang.String k,
boolean not,
ConditionFactory.KeyMatchType matchType,
Condition.Context context)
Creates a condition that checks the given key.
|
static Condition |
ConditionFactory.createKeyValueCondition(java.lang.String k,
java.lang.String v,
ConditionFactory.Op op,
Condition.Context context,
boolean considerValAsKey)
Create a new condition that checks the key and the value of the object.
|
static ConditionFactory.PseudoClassCondition |
ConditionFactory.createPseudoClassCondition(java.lang.String id,
boolean not,
Condition.Context context)
Create a new pseudo class condition
|
static ConditionFactory.PseudoClassCondition |
ConditionFactory.PseudoClassCondition.createPseudoClassCondition(java.lang.String id,
boolean not,
Condition.Context context)
Create a new pseudo class condition
|