summaryrefslogtreecommitdiff
path: root/src/main/org/apache/tools/ant/taskdefs/optional/vss/MSVSSCHECKIN.java
diff options
context:
space:
mode:
authorMagesh Umasankar <umagesh@apache.org>2002-07-09 21:06:15 +0000
committerMagesh Umasankar <umagesh@apache.org>2002-07-09 21:06:15 +0000
commitda5a13f8e4e0e4475f942b5ae5670271b711d423 (patch)
tree79ca25a0d8a359b1ecbac91821fdc30da982b202 /src/main/org/apache/tools/ant/taskdefs/optional/vss/MSVSSCHECKIN.java
parente5235423ccd494cb7516a1df6e3e13a74a22b767 (diff)
downloadant-da5a13f8e4e0e4475f942b5ae5670271b711d423.tar.gz
Merge differences between the ANT_15_FINAL branch and the trunk into the trunk.
git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@273081 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/main/org/apache/tools/ant/taskdefs/optional/vss/MSVSSCHECKIN.java')
-rw-r--r--src/main/org/apache/tools/ant/taskdefs/optional/vss/MSVSSCHECKIN.java13
1 files changed, 9 insertions, 4 deletions
diff --git a/src/main/org/apache/tools/ant/taskdefs/optional/vss/MSVSSCHECKIN.java b/src/main/org/apache/tools/ant/taskdefs/optional/vss/MSVSSCHECKIN.java
index fdce2fdf7..675adb4de 100644
--- a/src/main/org/apache/tools/ant/taskdefs/optional/vss/MSVSSCHECKIN.java
+++ b/src/main/org/apache/tools/ant/taskdefs/optional/vss/MSVSSCHECKIN.java
@@ -61,7 +61,7 @@ import org.apache.tools.ant.types.Path;
import java.io.File;
/**
- * Task to perform CheckIn commands to Microsoft Visual Source Safe.
+ * Performs CheckIn commands to Microsoft Visual SourceSafe.
*
* @author Martin Poeschl
*
@@ -156,7 +156,8 @@ public class MSVSSCHECKIN extends MSVSS {
}
/**
- * Set behaviour recursive or non-recursive
+ * Flag to tell the task to recurse down the tree;
+ * optional, default false.
*/
public void setRecursive(boolean recursive) {
m_Recursive = recursive;
@@ -174,7 +175,7 @@ public class MSVSSCHECKIN extends MSVSS {
}
/**
- * Set behaviour, used in get command to make files that are 'got' writable
+ * Leave checked in files writable? Default: false.
*/
public final void setWritable(boolean argWritable) {
m_Writable = argWritable;
@@ -191,6 +192,10 @@ public class MSVSSCHECKIN extends MSVSS {
}
}
+ /**
+ * What to respond with (sets the -I option). By default, -I- is
+ * used; values of Y or N will be appended to this.
+ */
public void setAutoresponse(String response){
if (response.equals("") || response.equals("null")) {
m_AutoResponse = null;
@@ -221,7 +226,7 @@ public class MSVSSCHECKIN extends MSVSS {
}
/**
- * Set the comment to apply in SourceSafe.
+ * Set the comment to apply; optional.
* <p>
* If this is null or empty, it will be replaced with "-" which
* is what SourceSafe uses for an empty comment.