org.openstreetmap.josm.data.validation.tests
Class DeprecatedTags

java.lang.Object
  extended by org.openstreetmap.josm.data.osm.visitor.AbstractVisitor
      extended by org.openstreetmap.josm.data.validation.Test
          extended by org.openstreetmap.josm.data.validation.tests.DeprecatedTags
All Implemented Interfaces:
Visitor

public class DeprecatedTags
extends Test


Nested Class Summary
private static class DeprecatedTags.DeprecationCheck
           
private  class DeprecatedTags.DeprecationError
           
 
Field Summary
private  java.util.List<DeprecatedTags.DeprecationCheck> checks
           
 
Fields inherited from class org.openstreetmap.josm.data.validation.Test
checkBeforeUpload, checkEnabled, description, enabled, errors, isBeforeUpload, name, partialSelection, progressMonitor, testBeforeUpload
 
Constructor Summary
DeprecatedTags()
           
 
Method Summary
 void visit(Node n)
          Visiting call for points.
 void visit(OsmPrimitive p)
           
 void visit(Relation r)
          Visiting call for relations.
 void visit(Way w)
          Visiting call for lines.
 
Methods inherited from class org.openstreetmap.josm.data.validation.Test
addGui, deletePrimitivesIfNeeded, endTest, fixError, getErrors, getName, initialize, isBuilding, isCanceled, isFixable, ok, setBeforeUpload, setPartialSelection, startTest, testBeforeUpload, visit
 
Methods inherited from class org.openstreetmap.josm.data.osm.visitor.AbstractVisitor
visit
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

checks

private java.util.List<DeprecatedTags.DeprecationCheck> checks
Constructor Detail

DeprecatedTags

public DeprecatedTags()
Method Detail

visit

public void visit(OsmPrimitive p)

visit

public void visit(Node n)
Description copied from interface: Visitor
Visiting call for points.

Specified by:
visit in interface Visitor
Overrides:
visit in class Test
Parameters:
n - The node to inspect.

visit

public void visit(Way w)
Description copied from interface: Visitor
Visiting call for lines.

Specified by:
visit in interface Visitor
Overrides:
visit in class Test
Parameters:
w - The way to inspect.

visit

public void visit(Relation r)
Description copied from interface: Visitor
Visiting call for relations.

Specified by:
visit in interface Visitor
Overrides:
visit in class Test
Parameters:
r - The relation to inspect.


JOSM