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

Packages that use TestError
org.openstreetmap.josm.actions   
org.openstreetmap.josm.actions.upload   
org.openstreetmap.josm.data.validation   
org.openstreetmap.josm.data.validation.tests   
org.openstreetmap.josm.gui.dialogs   
org.openstreetmap.josm.gui.dialogs.validator   
org.openstreetmap.josm.gui.layer   
 

Uses of TestError in org.openstreetmap.josm.actions
 

Fields in org.openstreetmap.josm.actions with type parameters of type TestError
private  java.util.List<TestError> ValidateAction.ValidationTask.errors
           
 

Uses of TestError in org.openstreetmap.josm.actions.upload
 

Method parameters in org.openstreetmap.josm.actions.upload with type arguments of type TestError
private  boolean ValidateUploadHook.displayErrorScreen(java.util.List<TestError> errors)
          Displays a screen where the actions that would be taken are displayed and give the user the possibility to cancel the upload.
 

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

Fields in org.openstreetmap.josm.data.validation with type parameters of type TestError
protected  java.util.List<TestError> Test.errors
          The list of errors
 

Methods in org.openstreetmap.josm.data.validation that return types with arguments of type TestError
 java.util.List<TestError> Test.getErrors()
          Gets the validation errors accumulated until this moment.
 

Methods in org.openstreetmap.josm.data.validation with parameters of type TestError
 Command Test.fixError(TestError testError)
          Fixes the error with the appropriate command
 boolean Test.isFixable(TestError testError)
          Returns true if the given error can be fixed automatically
 

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

Subclasses of TestError in org.openstreetmap.josm.data.validation.tests
private  class DeprecatedTags.DeprecationError
           
protected  class PowerLines.PowerLineError
           
 

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

Methods in org.openstreetmap.josm.data.validation.tests with parameters of type TestError
 Command DuplicateWay.fixError(TestError testError)
          Fix the error by removing all but one instance of duplicate ways
 Command DuplicateRelation.fixError(TestError testError)
          Fix the error by removing all but one instance of duplicate relations
 Command UntaggedNode.fixError(TestError testError)
           
 Command Coastlines.fixError(TestError testError)
           
 Command PowerLines.fixError(TestError testError)
           
 Command DuplicatedWayNodes.fixError(TestError testError)
           
 Command UntaggedWay.fixError(TestError testError)
           
 Command DuplicateNode.fixError(TestError testError)
          Merge the nodes into one.
 Command TagChecker.fixError(TestError testError)
           
 boolean DuplicateWay.isFixable(TestError testError)
           
 boolean DuplicateRelation.isFixable(TestError testError)
           
 boolean UntaggedNode.isFixable(TestError testError)
           
 boolean Coastlines.isFixable(TestError testError)
           
 boolean PowerLines.isFixable(TestError testError)
           
 boolean DuplicatedWayNodes.isFixable(TestError testError)
           
 boolean UntaggedWay.isFixable(TestError testError)
           
 boolean DuplicateNode.isFixable(TestError testError)
           
 boolean TagChecker.isFixable(TestError testError)
           
 

Uses of TestError in org.openstreetmap.josm.gui.dialogs
 

Fields in org.openstreetmap.josm.gui.dialogs declared as TestError
private  TestError ValidatorDialog.popupMenuError
           
 

Fields in org.openstreetmap.josm.gui.dialogs with type parameters of type TestError
private  java.util.Collection<TestError> ValidatorDialog.FixTask.testErrors
           
 

Constructor parameters in org.openstreetmap.josm.gui.dialogs with type arguments of type TestError
ValidatorDialog.FixTask(java.util.Collection<TestError> testErrors)
           
 

Uses of TestError in org.openstreetmap.josm.gui.dialogs.validator
 

Fields in org.openstreetmap.josm.gui.dialogs.validator with type parameters of type TestError
private  java.util.List<TestError> ValidatorTreePanel.errors
          The list of errors shown in the tree
 

Methods in org.openstreetmap.josm.gui.dialogs.validator that return types with arguments of type TestError
 java.util.List<TestError> ValidatorTreePanel.getErrors()
          Returns the errors of the tree
 

Method parameters in org.openstreetmap.josm.gui.dialogs.validator with type arguments of type TestError
 void ValidatorTreePanel.setErrorList(java.util.List<TestError> errors)
          Sets the errors list used by a data layer
 void ValidatorTreePanel.setErrors(java.util.List<TestError> newerrors)
          Clears the current error list and adds these errors to it
 

Constructor parameters in org.openstreetmap.josm.gui.dialogs.validator with type arguments of type TestError
ValidatorTreePanel(java.util.List<TestError> errors)
          Constructor
 

Uses of TestError in org.openstreetmap.josm.gui.layer
 

Fields in org.openstreetmap.josm.gui.layer with type parameters of type TestError
 java.util.List<TestError> OsmDataLayer.validationErrors
           
 



JOSM