jruaux 2002/10/30 07:41:24
Modified: Eclipse-Plugin/src/java/org/apache/cactus/eclipse/containers/ant
ContainerHome.java
Log:
Polished the javadoc
Revision Changes Path
1.2 +8 -10
jakarta-cactus/Eclipse-Plugin/src/java/org/apache/cactus/eclipse/containers/ant/ContainerHome.java
Index: ContainerHome.java
===================================================================
RCS file:
/home/cvs/jakarta-cactus/Eclipse-Plugin/src/java/org/apache/cactus/eclipse/containers/ant/ContainerHome.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ContainerHome.java 30 Oct 2002 14:15:01 -0000 1.1
+++ ContainerHome.java 30 Oct 2002 15:41:24 -0000 1.2
@@ -66,9 +66,9 @@
public class ContainerHome
{
/**
- * the target in the ant build (e.g. "tomcat.home.40")
+ * the target mask in the ant build (e.g. "tomcat.40")
*/
- private String target;
+ private String targetMask;
/**
* path to the container home (e.g. "c:/jakarta/tomcat40")
*/
@@ -76,27 +76,25 @@
/**
* Constructor.
- * @param theTarget the target in the ant build (e.g. "tomcat.home.40")
+ * @param theTargetMask the target in the ant build (e.g. "tomcat.40")
* @param theDirectory path to the container home
* (e.g. "c:/jakarta/tomcat40")
*/
- public ContainerHome(String theTarget, String theDirectory)
+ public ContainerHome(String theTargetMask, String theDirectory)
{
- target = theTarget;
+ targetMask = theTargetMask;
directory = theDirectory;
}
/**
- * Returns the target.
- * @return String the target
+ * @return String the target mask
*/
- public String getTarget()
+ public String getTargetMask()
{
- return target;
+ return targetMask;
}
/**
- * Returns the directory.
* @return String the directory
*/
public String getDirectory()
--
To unsubscribe, e-mail: <mailto:cactus-dev-unsubscribe@;jakarta.apache.org>
For additional commands, e-mail: <mailto:cactus-dev-help@;jakarta.apache.org>