/**
* Date to check-out.
*
* @param date The date to check-out.
*
* @ant.attribute group="vdl"
*/
/**
* Date to get.
*
* @param date The date to get.
*
* @ant.attribute group="vdl"
*/
public void setDate(String date) {
super.setInternalDate(date);
}
/**
* Label to check-out.
*
* @param label The label to check-out.
*
* @ant.attribute group="vdl"
*/
/**
* Label to get.
*
* @param label The label to get.
*
* @ant.attribute group="vdl"
*/
public void setLabel(String label) {
super.setInternalLabel(label);
}
/**
* Autoresponce behaviour. Valid options are Y and N.
*
* @param response The auto response value.
*/
public void setAutoresponse(String response) {
super.setInternalAutoResponse(response);
}
/**
* Date and time stamp given to the local copy. Defaults to <code>current</code>.
*
* @param timestamp The file time stamping behaviour.
*/
public void setFileTimeStamp(CurrentModUpdated timestamp) {
super.setInternalFileTimeStamp(timestamp);
}
/**
* Action taken when local files are writable. Defaults to <code>fail</code>.
* <p>
* Due to ss.exe returning with an exit code of '100' for both errors and when
* a file has been skipped, <code>failonerror</code> is set to false when using
* the <code>skip</code> option.
* </p>
*
* @param files The writable files behaviour
*/
/**
* Action taken when local files are writable. Defaults to <code>fail</code>.
* <p>
* Due to ss.exe returning with an exit code of '100' for both errors and when
* a file has been skipped, <code>failonerror</code> is set to false when using
* the <code>skip</code> option.
*
* @param files The action to take.
*/
public void setWritableFiles(WritableFiles files) {
super.setInternalWritableFiles(files);
}
|