Uses of Class
org.openstreetmap.josm.gui.mappaint.mapcss.Condition.Context
-
Packages that use Condition.Context 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.org.openstreetmap.josm.gui.mappaint.mapcss.parsergen -
-
Uses of Condition.Context in org.openstreetmap.josm.gui.mappaint
Fields in org.openstreetmap.josm.gui.mappaint declared as Condition.Context Modifier and Type Field Description private Condition.Context
Environment. context
Methods in org.openstreetmap.josm.gui.mappaint that return Condition.Context Modifier and Type Method Description Condition.Context
Environment. getContext()
Replies the current context.Methods in org.openstreetmap.josm.gui.mappaint with parameters of type Condition.Context Modifier and Type Method Description Environment
Environment. withContext(Condition.Context context)
Creates a clone of this environment, with the specifiedCondition.Context
. -
Uses of Condition.Context in org.openstreetmap.josm.gui.mappaint.mapcss
Methods in org.openstreetmap.josm.gui.mappaint.mapcss that return Condition.Context Modifier and Type Method 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.Methods in org.openstreetmap.josm.gui.mappaint.mapcss with parameters of type Condition.Context Modifier and Type Method Description static ConditionFactory.ClassCondition
ConditionFactory. createClassCondition(java.lang.String id, boolean not, Condition.Context context)
Create a new class conditionstatic ConditionFactory.ExpressionCondition
ConditionFactory. createExpressionCondition(Expression e, Condition.Context context)
Create a new condition that a expression needs to be fulfilledstatic 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 conditionstatic ConditionFactory.PseudoClassCondition
ConditionFactory.PseudoClassCondition. createPseudoClassCondition(java.lang.String id, boolean not, Condition.Context context)
Create a new pseudo class condition -
Uses of Condition.Context in org.openstreetmap.josm.gui.mappaint.mapcss.parsergen
Methods in org.openstreetmap.josm.gui.mappaint.mapcss.parsergen with parameters of type Condition.Context Modifier and Type Method Description Condition
MapCSSParser. class_or_pseudoclass(Condition.Context context)
Condition
MapCSSParser. condition(Condition.Context context)
Condition
MapCSSParser. simple_key_condition(Condition.Context context)
Condition
MapCSSParser. simple_key_value_condition(Condition.Context context)
-