- Timestamp:
- 2016-08-10T23:37:20+02:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/validation/TestError.java
r10469 r10778 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 */ … … 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 */ … … 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, … … 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) { … … 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) { … … 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,
Note:
See TracChangeset
for help on using the changeset viewer.