Changeset 8338 in josm for trunk/src/org/openstreetmap/josm/gui/mappaint/mapcss/Condition.java
- Timestamp:
- 2015-05-07T01:27:41+02:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/mappaint/mapcss/Condition.java
r8297 r8338 146 146 } 147 147 148 public static final EnumSet<Op> COMPARISON_OPERATERS =149 EnumSet.of(Op.GREATER_OR_EQUAL, Op.GREATER, Op.LESS_OR_EQUAL, Op.LESS);150 151 148 /** 152 149 * Most common case of a KeyValueCondition. … … 223 220 224 221 public final Pattern pattern; 225 public static final EnumSet<Op> SUPPORTED_OPS = EnumSet.of(Op.REGEX, Op.NREGEX);222 public static final Set<Op> SUPPORTED_OPS = EnumSet.of(Op.REGEX, Op.NREGEX); 226 223 227 224 public KeyValueRegexpCondition(String k, String v, Op op, boolean considerValAsKey) {
Note:
See TracChangeset
for help on using the changeset viewer.