|
@@ -23,7 +23,6 @@ import org.apache.tools.ant.taskdefs.exec.Execute; |
|
|
import org.apache.tools.ant.types.Commandline; |
|
|
import org.apache.tools.ant.types.Commandline; |
|
|
import org.apache.tools.ant.types.FileSet; |
|
|
import org.apache.tools.ant.types.FileSet; |
|
|
import org.apache.tools.ant.types.Path; |
|
|
import org.apache.tools.ant.types.Path; |
|
|
import org.apache.tools.ant.types.Reference; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
* This task makes it easy to generate Javadoc documentation for a collection of |
|
|
* This task makes it easy to generate Javadoc documentation for a collection of |
|
@@ -102,17 +101,6 @@ public class Javadoc |
|
|
m_author = src; |
|
|
m_author = src; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* Adds a reference to a CLASSPATH defined elsewhere. |
|
|
|
|
|
* |
|
|
|
|
|
* @param r The new BootClasspathRef value |
|
|
|
|
|
*/ |
|
|
|
|
|
public void setBootClasspathRef( Reference r ) |
|
|
|
|
|
throws TaskException |
|
|
|
|
|
{ |
|
|
|
|
|
createBootclasspath().setRefid( r ); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public void setBootclasspath( Path src ) |
|
|
public void setBootclasspath( Path src ) |
|
|
throws TaskException |
|
|
throws TaskException |
|
|
{ |
|
|
{ |
|
@@ -151,17 +139,6 @@ public class Javadoc |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* Adds a reference to a CLASSPATH defined elsewhere. |
|
|
|
|
|
* |
|
|
|
|
|
* @param r The new ClasspathRef value |
|
|
|
|
|
*/ |
|
|
|
|
|
public void setClasspathRef( Reference r ) |
|
|
|
|
|
throws TaskException |
|
|
|
|
|
{ |
|
|
|
|
|
createClasspath().setRefid( r ); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
* Sets whether default exclusions should be used or not. |
|
|
* Sets whether default exclusions should be used or not. |
|
|
* |
|
|
* |
|
@@ -205,16 +182,6 @@ public class Javadoc |
|
|
m_doclet.setPath( src ); |
|
|
m_doclet.setPath( src ); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
public void setDocletPathRef( Reference r ) |
|
|
|
|
|
throws TaskException |
|
|
|
|
|
{ |
|
|
|
|
|
if( m_doclet == null ) |
|
|
|
|
|
{ |
|
|
|
|
|
m_doclet = new DocletInfo(); |
|
|
|
|
|
} |
|
|
|
|
|
m_doclet.createPath().setRefid( r ); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public void setDoctitle( String src ) |
|
|
public void setDoctitle( String src ) |
|
|
{ |
|
|
{ |
|
|
Html h = new Html(); |
|
|
Html h = new Html(); |
|
@@ -417,17 +384,6 @@ public class Javadoc |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* Adds a reference to a CLASSPATH defined elsewhere. |
|
|
|
|
|
* |
|
|
|
|
|
* @param r The new SourcepathRef value |
|
|
|
|
|
*/ |
|
|
|
|
|
public void setSourcepathRef( Reference r ) |
|
|
|
|
|
throws TaskException |
|
|
|
|
|
{ |
|
|
|
|
|
createSourcepath().setRefid( r ); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public void setSplitindex( boolean b ) |
|
|
public void setSplitindex( boolean b ) |
|
|
{ |
|
|
{ |
|
|
addArgIf( b, "-splitindex" ); |
|
|
addArgIf( b, "-splitindex" ); |
|
|