From 75d695b5b0d4acea1cf93bd7230ba062e97fcba6 Mon Sep 17 00:00:00 2001 From: Steve Loughran Date: Tue, 23 Sep 2003 06:28:33 +0000 Subject: [PATCH] minor cleanups; no code changes git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@275290 13f79535-47bb-0310-9956-ffa450edef68 --- .../tools/ant/taskdefs/optional/dotnet/DotnetCompile.java | 2 -- .../apache/tools/ant/taskdefs/optional/dotnet/Ilasm.java | 2 +- .../apache/tools/ant/taskdefs/optional/dotnet/Ildasm.java | 7 ++++--- .../apache/tools/ant/taskdefs/optional/dotnet/JSharp.java | 2 ++ .../tools/ant/taskdefs/optional/dotnet/WsdlToDotnet.java | 2 +- 5 files changed, 8 insertions(+), 7 deletions(-) diff --git a/src/main/org/apache/tools/ant/taskdefs/optional/dotnet/DotnetCompile.java b/src/main/org/apache/tools/ant/taskdefs/optional/dotnet/DotnetCompile.java index e6ab0ff9a..c8a88745c 100644 --- a/src/main/org/apache/tools/ant/taskdefs/optional/dotnet/DotnetCompile.java +++ b/src/main/org/apache/tools/ant/taskdefs/optional/dotnet/DotnetCompile.java @@ -642,8 +642,6 @@ public abstract class DotnetCompile } - - /** * add a define to the list of definitions * @param define diff --git a/src/main/org/apache/tools/ant/taskdefs/optional/dotnet/Ilasm.java b/src/main/org/apache/tools/ant/taskdefs/optional/dotnet/Ilasm.java index 6cb32362a..58768c1c6 100644 --- a/src/main/org/apache/tools/ant/taskdefs/optional/dotnet/Ilasm.java +++ b/src/main/org/apache/tools/ant/taskdefs/optional/dotnet/Ilasm.java @@ -82,7 +82,7 @@ import org.apache.tools.ant.types.FileSet; * /out:file ... /verbose is used some places; /quiet here in ildasm... etc.] * It would be nice if someone made all the command line tools consistent (and * not as brittle as the java cmdline tools)

- * + *

* The task is a directory based task, so attributes like includes="*.il" * and excludes="broken.il" can be used to control the files pulled * in. You can also use nested <src> filesets to refer to source. diff --git a/src/main/org/apache/tools/ant/taskdefs/optional/dotnet/Ildasm.java b/src/main/org/apache/tools/ant/taskdefs/optional/dotnet/Ildasm.java index dde841da8..6e3a6e567 100644 --- a/src/main/org/apache/tools/ant/taskdefs/optional/dotnet/Ildasm.java +++ b/src/main/org/apache/tools/ant/taskdefs/optional/dotnet/Ildasm.java @@ -65,7 +65,7 @@ import java.io.File; * into ILASM assembly code. Useful when converting imported typelibs into * assembler before patching and recompiling, as one has to do when doing * advanced typelib work. - * + *

* As well as generating the named output file, the ildasm program * will also generate resource files Icons.resources * Message.resources and a .res file whose filename stub is derived @@ -76,13 +76,13 @@ import java.io.File; * creates the resources in the directory specified by resourceDir if * set, else in the same directory as the destFile. * - * + *

* This task requires the .NET SDK installed and ildasm on the path. * To disassemble using alternate CLR systems, set the executable attribute * to the name/path of the alternate implementation -one that must * support all the classic ildasm commands. * - * + *

* Dependency logic: the task executes the command if the output file is missing * or older than the source file. It does not take into account changes * in the options of the task, or timestamp differences in resource files. @@ -90,6 +90,7 @@ import java.io.File; * .il file in place with some error message. To prevent this from confusing * the dependency logic, the file specified by the dest * attribute is always deleted after an unsuccessful build. + * @ant.task category="dotnet" */ public class Ildasm extends Task { diff --git a/src/main/org/apache/tools/ant/taskdefs/optional/dotnet/JSharp.java b/src/main/org/apache/tools/ant/taskdefs/optional/dotnet/JSharp.java index 65ce8f6fa..d599c8577 100644 --- a/src/main/org/apache/tools/ant/taskdefs/optional/dotnet/JSharp.java +++ b/src/main/org/apache/tools/ant/taskdefs/optional/dotnet/JSharp.java @@ -58,9 +58,11 @@ import org.apache.tools.ant.BuildException; /** * Compile J# source down to a managed .NET application. + *

* J# is not Java. But it is the language closest to Java in the .NET framework. * This task compiles jsharp source (assumes a .jsl extension, incidentally), and * generates a .NET managed exe or dll. + *

* See http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dv_vjsharp/html/vjoriMicrosoftVisualJ.asp * for vjc command options in glory detail. * @author Steve Loughran diff --git a/src/main/org/apache/tools/ant/taskdefs/optional/dotnet/WsdlToDotnet.java b/src/main/org/apache/tools/ant/taskdefs/optional/dotnet/WsdlToDotnet.java index 2eeb8e4cd..b2d2c592e 100644 --- a/src/main/org/apache/tools/ant/taskdefs/optional/dotnet/WsdlToDotnet.java +++ b/src/main/org/apache/tools/ant/taskdefs/optional/dotnet/WsdlToDotnet.java @@ -62,7 +62,7 @@ import org.apache.tools.ant.Task; * * See "Creating an XML Web Service Proxy", "wsdl.exe" docs in * the framework SDK documentation - * @author Steve Loughran steve_l@iseran.com + * @author Steve Loughran * @version 0.5 * @ant.task name="wsdltodotnet" category="dotnet" * @since Ant 1.5