/**
* Check-in files recursively. Defaults to false.
*
* @param recursive The boolean value for recursive.
*/
/**
* Add files recursively. Defaults to false.
*
* @param recursive The boolean value for recursive.
*/
public void setRecursive(boolean recursive) {
super.setInternalRecursive(recursive);
}
/**
* Unset the READ-ONLY flag on local copies of files checked-in to VSS.
* Defaults to false.
*
* @param writable The boolean value for writable.
*/
/**
* Unset the READ-ONLY flag on local copies of files added to VSS. Defaults to false.
*
* @param writable The boolean value for writable.
*/
public final void setWritable(boolean writable) {
super.setInternalWritable(writable);
}
/**
* Autoresponce behaviour. Valid options are Y and N.
*
* @param response The auto response value.
*/
public void setAutoresponse(String response) {
super.setInternalAutoResponse(response);
}
/**
* Comment to apply to files checked-in to SourceSafe.
*
* @param comment The comment to apply in SourceSafe
*/
/**
* Comment to apply to files added to SourceSafe.
*
* @param comment The comment to apply in SourceSafe
*/
public void setComment(String comment) {
super.setInternalComment(comment);
}
|