Changeset 17623 in josm
- Timestamp:
- 2021-03-21T15:45:29+01:00 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/validation/tests/MapCSSTagCheckerRule.java
r17620 r17623 55 55 * The selector of this {@code TagCheck} 56 56 */ 57 protectedfinal MapCSSRule rule;57 final MapCSSRule rule; 58 58 /** 59 59 * Commands to apply in order to fix a matching primitive 60 60 */ 61 protectedfinal List<MapCSSTagCheckerFixCommand> fixCommands;61 final List<MapCSSTagCheckerFixCommand> fixCommands; 62 62 /** 63 63 * Tags (or arbitrary strings) of alternatives to be presented to the user 64 64 */ 65 protectedfinal List<String> alternatives;65 final List<String> alternatives; 66 66 /** 67 67 * An {@link org.openstreetmap.josm.gui.mappaint.mapcss.Instruction.AssignmentInstruction}-{@link Severity} pair. 68 68 * Is evaluated on the matching primitive to give the error message. Map is checked to contain exactly one element. 69 69 */ 70 protectedfinal Map<Instruction.AssignmentInstruction, Severity> errors;70 final Map<Instruction.AssignmentInstruction, Severity> errors; 71 71 /** 72 72 * MapCSS Classes to set on matching primitives 73 73 */ 74 protectedfinal Collection<String> setClassExpressions;74 final Collection<String> setClassExpressions; 75 75 /** 76 76 * Denotes whether the object should be deleted for fixing it 77 77 */ 78 protectedboolean deletion;78 boolean deletion; 79 79 /** 80 80 * A string used to group similar tests 81 81 */ 82 protectedString group;82 String group; 83 83 84 84 MapCSSTagCheckerRule(MapCSSRule rule) {
Note:
See TracChangeset
for help on using the changeset viewer.