Changeset 7308 in josm
- Timestamp:
- 2014-07-12T17:37:49+02:00 (10 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/data/validation/tests
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/validation/tests/Lanes.java
r7005 r7308 27 27 */ 28 28 public Lanes() { 29 super(tr("Lane tags") );29 super(tr("Lane tags"), tr("Test that validates ''lane:'' tags.")); 30 30 } 31 31 -
trunk/src/org/openstreetmap/josm/data/validation/tests/RelationChecker.java
r7254 r7308 58 58 public RelationChecker() { 59 59 super(tr("Relation checker"), 60 tr(" This plugin checks for errors in relations."));60 tr("Checks for errors in relations.")); 61 61 } 62 62 -
trunk/src/org/openstreetmap/josm/data/validation/tests/TurnrestrictionTest.java
r7012 r7308 44 44 */ 45 45 public TurnrestrictionTest() { 46 super(tr("Turnrestrictions"), tr("This test checks if turnrestrictions are valid "));46 super(tr("Turnrestrictions"), tr("This test checks if turnrestrictions are valid.")); 47 47 } 48 48 … … 153 153 viaPseudoWay.addNode(viaNode); 154 154 checkIfConnected(fromWay, viaPseudoWay, 155 tr("The \"from\" way does not start or end at a \"via\" node "), FROM_VIA_NODE);155 tr("The \"from\" way does not start or end at a \"via\" node."), FROM_VIA_NODE); 156 156 if (toWay.isOneway() != 0 && viaNode.equals(toWay.lastNode(true))) { 157 157 errors.add(new TestError(this, Severity.WARNING, tr("Superfluous turnrestriction as \"to\" way is oneway"), SUPERFLUOUS, r)); … … 159 159 } 160 160 checkIfConnected(viaPseudoWay, toWay, 161 tr("The \"to\" way does not start or end at a \"via\" node "), TO_VIA_NODE);161 tr("The \"to\" way does not start or end at a \"via\" node."), TO_VIA_NODE); 162 162 } else { 163 163 // check if consecutive ways are connected: from/via[0], via[i-1]/via[i], via[last]/to -
trunk/src/org/openstreetmap/josm/data/validation/tests/UnconnectedWays.java
r7005 r7308 32 32 33 33 /** 34 * Tests if there are segments that crosses in the same layer.34 * Checks if a way has an endpoint very near to another way. 35 35 * <br> 36 36 * This class is abstract since highway/railway/waterway/… ways must be handled separately.
Note:
See TracChangeset
for help on using the changeset viewer.