public class UntaggedNode extends Test implements AbstractPrimitive.KeyValueVisitor
Test.TagTest
Modifier and Type | Field and Description |
---|---|
protected static java.lang.String |
ERROR_MESSAGE |
protected static int |
UNTAGGED_NODE_BLANK |
protected static int |
UNTAGGED_NODE_CREATED_BY |
protected static int |
UNTAGGED_NODE_FIXME |
protected static int |
UNTAGGED_NODE_NOTE |
protected static int |
UNTAGGED_NODE_OTHER |
protected static int |
UNTAGGED_NODE_SOURCE |
protected static int |
UNTAGGED_NODE_WATCH |
checkBeforeUpload, checkEnabled, description, enabled, errors, isBeforeUpload, name, partialSelection, progressMonitor, startTime, testBeforeUpload
Constructor and Description |
---|
UntaggedNode()
Constructor
|
Modifier and Type | Method and Description |
---|---|
Command |
fixError(TestError testError)
Fixes the error with the appropriate command
|
boolean |
isFixable(TestError testError)
Returns true if the given error can be fixed automatically
|
void |
visit(Node n)
Visiting call for points.
|
void |
visitKeyValue(AbstractPrimitive n,
java.lang.String key,
java.lang.String value)
This method gets called for every tag received.
|
addGui, deletePrimitivesIfNeeded, endTest, equals, getErrors, getName, hashCode, initialize, isBuilding, isCanceled, isPrimitiveUsable, ok, setBeforeUpload, setPartialSelection, startTest, testBeforeUpload, visit, visit, visit
visit
protected static final int UNTAGGED_NODE_BLANK
protected static final int UNTAGGED_NODE_FIXME
protected static final int UNTAGGED_NODE_NOTE
protected static final int UNTAGGED_NODE_CREATED_BY
protected static final int UNTAGGED_NODE_WATCH
protected static final int UNTAGGED_NODE_SOURCE
protected static final int UNTAGGED_NODE_OTHER
protected static final java.lang.String ERROR_MESSAGE
public UntaggedNode()
public void visit(Node n)
Visitor
public void visitKeyValue(AbstractPrimitive n, java.lang.String key, java.lang.String value)
AbstractPrimitive.KeyValueVisitor
visitKeyValue
in interface AbstractPrimitive.KeyValueVisitor
n
- This primitivekey
- The keyvalue
- The valuepublic Command fixError(TestError testError)
Test