Class ExtensionSet
java.lang.Object
org.apache.tools.ant.ProjectComponent
org.apache.tools.ant.types.DataType
org.apache.tools.ant.taskdefs.optional.extension.ExtensionSet
- 
Field SummaryFields inherited from class org.apache.tools.ant.ProjectComponentdescription, location, project
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionvoidaddExtension(ExtensionAdapter extensionAdapter) Adds an extension that this library requires.voidaddFileset(FileSet fileSet) Adds a set of files about which extensions data will be extracted.voidaddLibfileset(LibFileSet fileSet) Adds a set of files about which extensions data will be extracted.protected voiddieOnCircularReference(Stack<Object> 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).voidMakes this instance in effect a reference to another ExtensionSet instance.toExtensions(Project proj) Extract a set of Extension objects from the ExtensionSet.toString()Basic DataType toString().Methods inherited from class org.apache.tools.ant.types.DataTypecheckAttributesAllowed, checkChildrenAllowed, circularReference, clone, dieOnCircularReference, dieOnCircularReference, getCheckedRef, getCheckedRef, getCheckedRef, getCheckedRef, getCheckedRef, getDataTypeName, getRefid, invokeCircularReferenceCheck, isChecked, isReference, noChildrenAllowed, pushAndInvokeCircularReferenceCheck, setChecked, tooManyAttributesMethods inherited from class org.apache.tools.ant.ProjectComponentgetDescription, getLocation, getProject, log, log, setDescription, setLocation, setProject
- 
Constructor Details- 
ExtensionSetpublic ExtensionSet()
 
- 
- 
Method Details- 
addExtensionAdds an extension that this library requires.- Parameters:
- extensionAdapter- an extension that this library requires.
 
- 
addLibfilesetAdds a set of files about which extensions data will be extracted.- Parameters:
- fileSet- a set of files about which extensions data will be extracted.
 
- 
addFilesetAdds a set of files about which extensions data will be extracted.- Parameters:
- fileSet- a set of files about which extensions data will be extracted.
 
- 
toExtensionsExtract a set of Extension objects from the ExtensionSet.- Parameters:
- proj- the project instance.
- Returns:
- an array containing the Extensions from this set
- Throws:
- BuildException- if an error occurs
 
- 
setRefidMakes this instance in effect a reference to another ExtensionSet instance.You must not set another attribute or nest elements inside this element if you make it a reference. - Overrides:
- setRefidin class- DataType
- Parameters:
- reference- the reference to which this instance is associated
- Throws:
- BuildException- if this instance already has been configured.
 
- 
dieOnCircularReferenceDescription copied from class:DataTypeCheck 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).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 DataType.checkedis true and set it to true on exit.- Overrides:
- dieOnCircularReferencein class- DataType
- Parameters:
- stk- the stack of references to check.
- p- the project to use to dereference the references.
- Throws:
- BuildException- on error.
 
- 
toString
 
-