public class Resources extends DataType implements AppendableResourceCollection
ResourceCollection: Either stores nested ResourceCollections,
making no attempt to remove duplicates, or references another ResourceCollection.| Modifier and Type | Field and Description |
|---|---|
static java.util.Iterator<Resource> |
EMPTY_ITERATOR
static empty Iterator |
static ResourceCollection |
NONE
static empty ResourceCollection |
description, location, project| Constructor and Description |
|---|
Resources()
Create a new
Resources. |
Resources(Project project)
Create a new
Resources. |
| Modifier and Type | Method and Description |
|---|---|
void |
add(ResourceCollection c)
Add a
ResourceCollection. |
protected void |
dieOnCircularReference(java.util.Stack<java.lang.Object> stk,
Project p)
Overrides the base implementation to recurse on all
DataType
child elements that may have been added. |
protected void |
invalidateExistingIterators()
Allow subclasses to notify existing Iterators they have experienced concurrent modification.
|
boolean |
isFilesystemOnly()
Fulfill the
ResourceCollection contract. |
java.util.Iterator<Resource> |
iterator()
Fulfill the
ResourceCollection contract. |
void |
setCache(boolean b)
Set whether to cache collections.
|
int |
size()
Fulfill the
ResourceCollection contract. |
java.lang.String |
toString()
Format this
Resources as a String. |
checkAttributesAllowed, checkChildrenAllowed, circularReference, clone, dieOnCircularReference, dieOnCircularReference, getCheckedRef, getCheckedRef, getCheckedRef, getCheckedRef, getCheckedRef, getDataTypeName, getRefid, invokeCircularReferenceCheck, isChecked, isReference, noChildrenAllowed, pushAndInvokeCircularReferenceCheck, setChecked, setRefid, tooManyAttributesgetDescription, getLocation, getProject, log, log, setDescription, setLocation, setProjectequals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitisEmpty, streampublic static final ResourceCollection NONE
static empty ResourceCollectionpublic static final java.util.Iterator<Resource> EMPTY_ITERATOR
static empty Iteratorpublic Resources()
Resources.public void setCache(boolean b)
b - boolean cache flag.public void add(ResourceCollection c)
ResourceCollection.add in interface AppendableResourceCollectionc - the ResourceCollection to add.public java.util.Iterator<Resource> iterator()
ResourceCollection contract.public int size()
ResourceCollection contract.size in interface ResourceCollectionint.public boolean isFilesystemOnly()
ResourceCollection contract.isFilesystemOnly in interface ResourceCollectiontrue if all Resources represent files.public java.lang.String toString()
Resources as a String.protected void dieOnCircularReference(java.util.Stack<java.lang.Object> stk,
Project p)
throws BuildException
DataType
child elements that may have been added.dieOnCircularReference in class DataTypestk - the stack of data types to use (recursively).p - the Project to use to dereference the references.BuildException - on error.protected void invalidateExistingIterators()