1 | public void setRecursive(boolean recursive) {↵ | | 1 | public void setRecursive(boolean recursive) {↵
|
2 | super.setInternalRecursive(recursive);↵ | | 2 | super.setInternalRecursive(recursive);↵
|
3 | }↵ | | 3 | }↵
|
|
4 | /**↵ | | 4 | /**↵
|
5 | * Unset the READ-ONLY flag on local copies of files added to VSS.↵ | | 5 | * Unset the READ-ONLY flag on local copies of files checked-in to VSS.↵
|
6 | Defaults to false.↵ | | 6 | * Defaults to false.↵
|
7 | *↵ | | 7 | *↵
|
8 | * @param writable The boolean value for writable.↵ | | 8 | * @param writable The boolean value for writable.↵
|
9 | */↵ | | 9 | */↵
|
10 | public final void setWritable(boolean writable) {↵ | | 10 | public final void setWritable(boolean writable) {↵
|
11 | super.setInternalWritable(writable);↵ | | 11 | super.setInternalWritable(writable);↵
|
12 | }↵ | | 12 | }↵
|
|
13 | /**↵ | | 13 | /**↵
|
14 | * Autoresponce behaviour. Valid options are Y and N.↵ | | 14 | * Autoresponce behaviour. Valid options are Y and N.↵
|
15 | *↵ | | 15 | *↵
|
16 | * @param response The auto response value.↵ | | 16 | * @param response The auto response value.↵
|
17 | */↵ | | 17 | */↵
|
18 | public void setAutoresponse(String response) {↵ | | 18 | public void setAutoresponse(String response) {↵
|
19 | super.setInternalAutoResponse(response);↵ | | 19 | super.setInternalAutoResponse(response);↵
|
20 | }↵ | | 20 | }↵
|
|
21 | /**↵ | | 21 | /**↵
|
22 | * Comment to apply to files added to SourceSafe.↵ | | 22 | * Comment to apply to files checked-in to SourceSafe.↵
|
23 | *↵ | | 23 | *↵
|
24 | * @param comment The comment to apply in SourceSafe↵ | | 24 | * @param comment The comment to apply in SourceSafe↵
|
25 | */↵ | | 25 | */↵
|
26 | public void setComment(String comment) {↵ | | 26 | public void setComment(String comment) {↵
|
27 | super.setInternalComment(comment); | | 27 | super.setInternalComment(comment);
|