Uses of Class
org.openstreetmap.josm.data.validation.Test

Packages that use Test
org.openstreetmap.josm.actions   
org.openstreetmap.josm.data.validation   
org.openstreetmap.josm.data.validation.tests   
org.openstreetmap.josm.gui.preferences   
 

Uses of Test in org.openstreetmap.josm.actions
 

Fields in org.openstreetmap.josm.actions with type parameters of type Test
private  java.util.Collection<Test> ValidateAction.ValidationTask.tests
           
 

Constructor parameters in org.openstreetmap.josm.actions with type arguments of type Test
ValidateAction.ValidationTask(java.util.Collection<Test> tests, java.util.Collection<OsmPrimitive> validatedPrimitives, java.util.Collection<OsmPrimitive> formerValidatedPrimitives)
           
 

Uses of Test in org.openstreetmap.josm.data.validation
 

Fields in org.openstreetmap.josm.data.validation declared as Test
private  Test TestError.tester
          The tester that raised this error
 

Methods in org.openstreetmap.josm.data.validation that return Test
 Test TestError.getTester()
          Gets the tester that raised this error
 

Methods in org.openstreetmap.josm.data.validation that return types with arguments of type Test
static java.util.Map<java.lang.String,Test> OsmValidator.getAllTestsMap()
          Gets a map from simple names to all tests.
static java.util.Collection<Test> OsmValidator.getEnabledTests(boolean beforeUpload)
           
static java.util.Collection<Test> OsmValidator.getTests()
           
 

Method parameters in org.openstreetmap.josm.data.validation with type arguments of type Test
private static void OsmValidator.applyPrefs(java.util.Map<java.lang.String,Test> tests, boolean beforeUpload)
           
static void OsmValidator.initializeTests(java.util.Collection<Test> allTests)
          Initializes all tests
 

Constructors in org.openstreetmap.josm.data.validation with parameters of type Test
TestError(Test tester, Severity severity, java.lang.String message, int code, java.util.Collection<? extends OsmPrimitive> primitives)
           
TestError(Test tester, Severity severity, java.lang.String message, int code, java.util.Collection<? extends OsmPrimitive> primitives, java.util.Collection<?> highlighted)
           
TestError(Test tester, Severity severity, java.lang.String message, int code, OsmPrimitive primitive)
           
TestError(Test tester, Severity severity, java.lang.String message, java.lang.String description, java.lang.String description_en, int code, java.util.Collection<? extends OsmPrimitive> primitives)
           
TestError(Test tester, Severity severity, java.lang.String message, java.lang.String description, java.lang.String description_en, int code, java.util.Collection<? extends OsmPrimitive> primitives, java.util.Collection<?> highlighted)
          Constructors
TestError(Test tester, Severity severity, java.lang.String message, java.lang.String description, java.lang.String description_en, int code, OsmPrimitive primitive)
           
 

Uses of Test in org.openstreetmap.josm.data.validation.tests
 

Subclasses of Test in org.openstreetmap.josm.data.validation.tests
 class BuildingInBuilding
           
 class Coastlines
          Check coastlines for errors
 class CrossingWays
          Tests if there are segments that crosses in the same layer
 class DeprecatedTags
           
 class DuplicatedWayNodes
           
 class DuplicateNode
          Tests if there are duplicate nodes
 class DuplicateRelation
          Tests if there are duplicate relations
 class DuplicateWay
          Tests if there are duplicate ways
 class MultipolygonTest
           
 class NameMismatch
          Check for missing name:* translations.
 class NodesDuplicatingWayTags
          Warn when a node has the same tags as its parent way.
 class NodesWithSameName
           
 class OverlappingAreas
           
 class OverlappingWays
          Tests if there are overlapping ways
 class PowerLines
          Checks for nodes in power lines/minor_lines that do not have a power=tower/pole tag.
See #7812 for discussions about this test.
 class RelationChecker
          Check for wrong relations
 class SelfIntersectingWay
          Checks for self-intersecting ways.
 class SimilarNamedWays
          Checks for similar named ways, symptom of a possible typo.
 class TagChecker
          Check for misspelled or wrong properties
 class TurnrestrictionTest
           
 class UnclosedWays
          Check area type ways for errors
 class UnconnectedWays
          Tests if there are segments that crosses in the same layer
 class UntaggedNode
          Checks for nodes with uninteresting tags that are in no way
 class UntaggedWay
          Checks for untagged ways
 class WayConnectedToArea
           
 class WronglyOrderedWays
          Check cyclic ways for errors
 

Methods in org.openstreetmap.josm.data.validation.tests with parameters of type Test
 java.util.List<TestError> DuplicateNode.buildTestErrors(Test parentTest, java.util.List<Node> nodes)
           
 

Uses of Test in org.openstreetmap.josm.gui.preferences
 

Fields in org.openstreetmap.josm.gui.preferences with type parameters of type Test
private  java.util.Collection<Test> ValidatorPreference.allTests
          The list of all tests
 



JOSM