From b9421dc80af485591a9c50cc8921f912e0def11e Mon Sep 17 00:00:00 2001 From: Ashlee Young Date: Fri, 23 Oct 2015 10:05:40 -0700 Subject: Removing sources to replace with download links instead. Change-Id: Ie28789a725051aec0d1b04dd291b7690a7898668 Signed-off-by: Ashlee Young --- .../manual/Types/classfileset.html | 119 --------------------- 1 file changed, 119 deletions(-) delete mode 100644 framework/src/ant/apache-ant-1.9.6/manual/Types/classfileset.html (limited to 'framework/src/ant/apache-ant-1.9.6/manual/Types/classfileset.html') diff --git a/framework/src/ant/apache-ant-1.9.6/manual/Types/classfileset.html b/framework/src/ant/apache-ant-1.9.6/manual/Types/classfileset.html deleted file mode 100644 index 6145d979..00000000 --- a/framework/src/ant/apache-ant-1.9.6/manual/Types/classfileset.html +++ /dev/null @@ -1,119 +0,0 @@ - - - - - -ClassFileSet Type - - - -

ClassFileSet

-

A classfileset is a specialized type of fileset which, given a set of -"root" classes, will include all of the class files upon which the -root classes depend. This is typically used to create a jar with all of the -required classes for a particular application. -

-

-classfilesets are typically used by reference. They are declared with an -"id" value and this is then used as a reference where a normal fileset -is expected. -

-

-This type requires the BCEL library. -

- - -

Attributes

-

The class fileset support the following attributes in addition -to those supported by the -standard fileset: -

- - - - - - - - - - - - -
AttributeDescriptionRequired
rootclassA single root class nameNo
- -

Nested Elements

- -

Root

-

-When more than one root class is required, multiple nested <root> elements -may be used -

- - - - - - - - - - - -
AttributeDescriptionRequired
classnameThe fully qualified name of the root classYes
- -

RootFileSet

-

-A root fileset is used to add a set of root classes from a fileset. In this case the entries in -the fileset are expected to be Java class files. The name of the Java class is determined by the -relative location of the classfile in the fileset. So, the file -org/apache/tools/ant/Project.class corresponds to the Java class -org.apache.tools.ant.Project.

- -

Examples

-
-<classfileset id="reqdClasses" dir="${classes.dir}">
-  <root classname="org.apache.tools.ant.Project"/>
-</classfileset>
-
- -

This example creates a fileset containing all the class files upon which the -org.apache.tools.ant.Project class depends. This fileset could -then be used to create a jar. -

- -
-<jar destfile="minimal.jar">
-  <fileset refid="reqdClasses"/>
-</jar>
-
- -
-<classfileset id="reqdClasses" dir="${classes.dir}">
-  <rootfileset dir="${classes.dir}" includes="org/apache/tools/ant/Project*.class"/>
-</classfileset>
-
- -

This example constructs the classfileset using all the class with names starting with Project -in the org.apache.tools.ant package

- - - - - - -- cgit 1.2.3-korg