ehatcher 2002/06/02 20:34:45
Modified: src/main/org/apache/tools/ant/taskdefs/optional Tag:
ANT_15_BRANCH ANTLR.java
Log:
Javadoc cleanup
Revision Changes Path
No revision
No revision
1.10.2.1 +11 -3
jakarta-ant/src/main/org/apache/tools/ant/taskdefs/optional/ANTLR.java
Index: ANTLR.java
===================================================================
RCS file:
/home/cvs/jakarta-ant/src/main/org/apache/tools/ant/taskdefs/optional/ANTLR.java,v
retrieving revision 1.10
retrieving revision 1.10.2.1
diff -u -r1.10 -r1.10.2.1
--- ANTLR.java 25 Apr 2002 12:14:50 -0000 1.10
+++ ANTLR.java 3 Jun 2002 03:34:45 -0000 1.10.2.1
@@ -96,11 +96,17 @@
commandline.setClassname("antlr.Tool");
}
+ /**
+ * file to process
+ */
public void setTarget(File target) {
log("Setting target to: " + target.toString(), Project.MSG_VERBOSE);
this.target = target;
}
+ /**
+ * Output directory
+ */
public void setOutputdirectory(File outputDirectory) {
log("Setting output directory to: " + outputDirectory.toString(),
Project.MSG_VERBOSE);
this.outputDirectory = outputDirectory;
@@ -110,7 +116,9 @@
// to System.exit() and there is nothing we can do
// right now to avoid this. :-( (SBa)
// I'm not removing this method to keep backward compatibility
- // and
+ /**
+ * Ignored. Forking is no longer an option.
+ */
public void setFork(boolean s) {
//this.fork = s;
}
@@ -123,8 +131,8 @@
}
/**
- * <code><classpath></code> allows classpath to be set
- * because a directory might be given for Antlr debug...
+ * Allows classpath to be set
+ * because a directory might be given for Antlr debug.
*/
public Path createClasspath() {
return commandline.createClasspath(project).createPath();
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>