Ticket #13305: TestError.java.patch
File TestError.java.patch, 3.2 KB (added by , 9 years ago) |
---|
-
src/org/openstreetmap/josm/data/validation/TestError.java
58 58 * @param message The error message 59 59 * @param description The translated description 60 60 * @param descriptionEn The English description 61 * @param code The test error reference code 61 62 * @param primitives The affected primitives 62 * @param code The test error reference code63 63 * @param highlighted OSM primitives to highlight 64 64 */ 65 65 public TestError(Test tester, Severity severity, String message, String description, String descriptionEn, … … 79 79 * @param tester The tester 80 80 * @param severity The severity of this error 81 81 * @param message The error message 82 * @param code The test error reference code 82 83 * @param primitives The affected primitives 83 * @param code The test error reference code84 84 * @param highlighted OSM primitives to highlight 85 85 */ 86 86 public TestError(Test tester, Severity severity, String message, int code, Collection<? extends OsmPrimitive> primitives, … … 95 95 * @param message The error message 96 96 * @param description The translated description 97 97 * @param descriptionEn The English description 98 * @param code The test error reference code 98 99 * @param primitives The affected primitives 99 * @param code The test error reference code100 100 */ 101 101 public TestError(Test tester, Severity severity, String message, String description, String descriptionEn, 102 102 int code, Collection<? extends OsmPrimitive> primitives) { … … 108 108 * @param tester The tester 109 109 * @param severity The severity of this error 110 110 * @param message The error message 111 * @param code The test error reference code 111 112 * @param primitives The affected primitives 112 * @param code The test error reference code113 113 */ 114 114 public TestError(Test tester, Severity severity, String message, int code, Collection<? extends OsmPrimitive> primitives) { 115 115 this(tester, severity, message, null, null, code, primitives, primitives); … … 120 120 * @param tester The tester 121 121 * @param severity The severity of this error 122 122 * @param message The error message 123 * @param code The test error reference code 123 124 * @param primitive The affected primitive 124 * @param code The test error reference code125 125 */ 126 126 public TestError(Test tester, Severity severity, String message, int code, OsmPrimitive primitive) { 127 127 this(tester, severity, message, null, null, code, Collections.singletonList(primitive), Collections … … 135 135 * @param message The error message 136 136 * @param description The translated description 137 137 * @param descriptionEn The English description 138 * @param code The test error reference code 138 139 * @param primitive The affected primitive 139 * @param code The test error reference code140 140 */ 141 141 public TestError(Test tester, Severity severity, String message, String description, String descriptionEn, 142 142 int code, OsmPrimitive primitive) {