public class Reverse extends ResourceComparator
description, location, project
Constructor and Description |
---|
Reverse()
Default constructor.
|
Reverse(ResourceComparator c)
Construct a new Reverse, supplying the ResourceComparator to be reversed.
|
Modifier and Type | Method and Description |
---|---|
void |
add(ResourceComparator c)
Add the ResourceComparator to reverse.
|
protected void |
dieOnCircularReference(java.util.Stack stk,
Project p)
Check to see whether any DataType we hold references to is
included in the Stack (which holds all DataType instances that
directly or indirectly reference this instance, including this
instance itself).
|
protected int |
resourceCompare(Resource foo,
Resource bar)
Compare two Resources.
|
compare, equals, hashCode
checkAttributesAllowed, checkChildrenAllowed, circularReference, clone, dieOnCircularReference, dieOnCircularReference, getCheckedRef, getCheckedRef, getCheckedRef, getCheckedRef, getDataTypeName, getRefid, invokeCircularReferenceCheck, isChecked, isReference, noChildrenAllowed, pushAndInvokeCircularReferenceCheck, setChecked, setRefid, tooManyAttributes, toString
getDescription, getLocation, getProject, log, log, setDescription, setLocation, setProject
public Reverse()
public Reverse(ResourceComparator c)
c
- the ResourceComparator to reverse.public void add(ResourceComparator c)
c
- the ResourceComparator to add.protected int resourceCompare(Resource foo, Resource bar)
resourceCompare
in class ResourceComparator
foo
- the first Resource.bar
- the second Resource.protected void dieOnCircularReference(java.util.Stack stk, Project p) throws BuildException
DataType
If one is included, throw a BuildException created by circularReference
.
This implementation is appropriate only for a DataType that cannot hold other DataTypes as children.
The general contract of this method is that it shouldn't do
anything if
is true and
set it to true on exit.checked
dieOnCircularReference
in class DataType
stk
- the stack of references to check.p
- the project to use to dereference the references.BuildException
- on error.