jruaux 2002/10/30 07:42:42
Modified: Eclipse-Plugin/src/java/org/apache/cactus/eclipse/launcher
WarBuilder.java
Log:
Polished the javadoc
Revision Changes Path
1.2 +18 -10
jakarta-cactus/Eclipse-Plugin/src/java/org/apache/cactus/eclipse/launcher/WarBuilder.java
Index: WarBuilder.java
===================================================================
RCS file:
/home/cvs/jakarta-cactus/Eclipse-Plugin/src/java/org/apache/cactus/eclipse/launcher/WarBuilder.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- WarBuilder.java 29 Oct 2002 17:11:42 -0000 1.1
+++ WarBuilder.java 30 Oct 2002 15:42:42 -0000 1.2
@@ -99,18 +99,26 @@
*/
private File buildFileLocation;
+ /**
+ * Constructor.
+ * @param theBuildFileLocation the build file for war creation
+ * @param theClassFilesDir classes to include in the war file
+ * @param theWebXML web.xml file to include in the war file
+ * @param theJarFilesDir jars to include in the war file
+ * @param theWebFilesDir web files to include in the war file
+ */
public WarBuilder(
- File buildFileLocation,
- File classFilesDir,
- File webXML,
- File jarFilesDir,
- File webFilesDir)
+ File theBuildFileLocation,
+ File theClassFilesDir,
+ File theWebXML,
+ File theJarFilesDir,
+ File theWebFilesDir)
{
- this.buildFileLocation = buildFileLocation;
- this.classFilesDir = classFilesDir;
- this.webXML = webXML;
- this.jarFilesDir = jarFilesDir;
- this.webFilesDir = webFilesDir;
+ this.buildFileLocation = theBuildFileLocation;
+ this.classFilesDir = theClassFilesDir;
+ this.webXML = theWebXML;
+ this.jarFilesDir = theJarFilesDir;
+ this.webFilesDir = theWebFilesDir;
}
/**
--
To unsubscribe, e-mail: <mailto:cactus-dev-unsubscribe@;jakarta.apache.org>
For additional commands, e-mail: <mailto:cactus-dev-help@;jakarta.apache.org>