jskeet 02/02/25 07:09:05
Modified: src/main/org/apache/tools/ant/taskdefs/optional/dotnet
CSharp.java Ilasm.java NetCommand.java
Log:
First pass of JavaDoc work just to get rid of warnings.
When this is complete, whole source tree should JavaDoc (with 1.4)
with no warnings. (With JDK1.3.1 the 1.4-regexp stuff generates
warnings, but that's all.)
Revision Changes Path
1.14 +3 -2
jakarta-ant/src/main/org/apache/tools/ant/taskdefs/optional/dotnet/CSharp.java
Index: CSharp.java
===================================================================
RCS file:
/home/cvs/jakarta-ant/src/main/org/apache/tools/ant/taskdefs/optional/dotnet/CSharp.java,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- CSharp.java 10 Jan 2002 13:59:35 -0000 1.13
+++ CSharp.java 25 Feb 2002 15:09:05 -0000 1.14
@@ -145,8 +145,9 @@
setIncludes(csc_file_pattern);
}
- /** name of the executable. the .exe suffix is deliberately not included
- * in anticipation of the unix version
+ /**
+ * Name of the executable. The .exe suffix is deliberately not
+ * included in anticipation of the unix version
*/
protected final static String csc_exe_name = "csc";
1.12 +3 -2
jakarta-ant/src/main/org/apache/tools/ant/taskdefs/optional/dotnet/Ilasm.java
Index: Ilasm.java
===================================================================
RCS file:
/home/cvs/jakarta-ant/src/main/org/apache/tools/ant/taskdefs/optional/dotnet/Ilasm.java,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- Ilasm.java 10 Jan 2002 13:59:35 -0000 1.11
+++ Ilasm.java 25 Feb 2002 15:09:05 -0000 1.12
@@ -120,7 +120,8 @@
setIncludes(file_pattern);
}
- /** name of the executable. the .exe suffix is deliberately not included
+ /**
+ * Name of the executable. The .exe suffix is deliberately not included
* in anticipation of the unix version
*/
protected final static String exe_name = "ilasm";
@@ -225,7 +226,7 @@
/** test for a string containing something useful
* @param string to test
- * @returns true if the argument is not null or empty
+ * @return true if the argument is not null or empty
*/
protected boolean notEmpty(String s) {
return s != null && s.length() != 0;
1.8 +0 -1
jakarta-ant/src/main/org/apache/tools/ant/taskdefs/optional/dotnet/NetCommand.java
Index: NetCommand.java
===================================================================
RCS file:
/home/cvs/jakarta-ant/src/main/org/apache/tools/ant/taskdefs/optional/dotnet/NetCommand.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- NetCommand.java 8 Jan 2002 23:53:53 -0000 1.7
+++ NetCommand.java 25 Feb 2002 15:09:05 -0000 1.8
@@ -84,7 +84,6 @@
to have a means of setting the path to point to the dotnet bin directory; in
which
case the shared code should go in here.
@author Steve Loughran [EMAIL PROTECTED]
- @created 2000-11-01
@version 0.3
*/
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>