KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > tools > ant > taskdefs > optional > vss > MSVSSConstants


1 /*
2  * Licensed to the Apache Software Foundation (ASF) under one or more
3  * contributor license agreements. See the NOTICE file distributed with
4  * this work for additional information regarding copyright ownership.
5  * The ASF licenses this file to You under the Apache License, Version 2.0
6  * (the "License"); you may not use this file except in compliance with
7  * the License. You may obtain a copy of the License at
8  *
9  * http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  */

18 package org.apache.tools.ant.taskdefs.optional.vss;
19
20 /**
21  * Holds all the constants for the VSS tasks.
22  *
23  */

24 public interface MSVSSConstants {
25     /** Constant for the thing to execute */
26     String JavaDoc SS_EXE = "ss";
27     /** Dollar Sigh to prefix the project path */
28     String JavaDoc PROJECT_PREFIX = "$";
29
30     /** The 'CP' command */
31     String JavaDoc COMMAND_CP = "CP";
32     /** The 'Add' command */
33     String JavaDoc COMMAND_ADD = "Add";
34     /** The 'Get' command */
35     String JavaDoc COMMAND_GET = "Get";
36     /** The 'Checkout' command */
37     String JavaDoc COMMAND_CHECKOUT = "Checkout";
38     /** The 'Checkin' command */
39     String JavaDoc COMMAND_CHECKIN = "Checkin";
40     /** The 'Label' command */
41     String JavaDoc COMMAND_LABEL = "Label";
42     /** The 'History' command */
43     String JavaDoc COMMAND_HISTORY = "History";
44     /** The 'Create' command */
45     String JavaDoc COMMAND_CREATE = "Create";
46
47     /** The brief style flag */
48     String JavaDoc STYLE_BRIEF = "brief";
49     /** The codediff style flag */
50     String JavaDoc STYLE_CODEDIFF = "codediff";
51     /** The nofile style flag */
52     String JavaDoc STYLE_NOFILE = "nofile";
53     /** The default style flag */
54     String JavaDoc STYLE_DEFAULT = "default";
55
56     /** The text for current (default) timestamp */
57     String JavaDoc TIME_CURRENT = "current";
58     /** The text for modified timestamp */
59     String JavaDoc TIME_MODIFIED = "modified";
60     /** The text for updated timestamp */
61     String JavaDoc TIME_UPDATED = "updated";
62
63     /** The text for replacing writable files */
64     String JavaDoc WRITABLE_REPLACE = "replace";
65     /** The text for skiping writable files */
66     String JavaDoc WRITABLE_SKIP = "skip";
67     /** The text for failing on writable files */
68     String JavaDoc WRITABLE_FAIL = "fail";
69
70     /** -Y flag */
71     String JavaDoc FLAG_LOGIN = "-Y";
72     /** -GL flag */
73     String JavaDoc FLAG_OVERRIDE_WORKING_DIR = "-GL";
74     /** -I- flag */
75     String JavaDoc FLAG_AUTORESPONSE_DEF = "-I-";
76     /** -I-Y flag */
77     String JavaDoc FLAG_AUTORESPONSE_YES = "-I-Y";
78     /** -I-N flag */
79     String JavaDoc FLAG_AUTORESPONSE_NO = "-I-N";
80     /** -R flag */
81     String JavaDoc FLAG_RECURSION = "-R";
82     /** -V flag */
83     String JavaDoc FLAG_VERSION = "-V";
84     /** -Vd flag */
85     String JavaDoc FLAG_VERSION_DATE = "-Vd";
86     /** -VL flag */
87     String JavaDoc FLAG_VERSION_LABEL = "-VL";
88     /** -W flag */
89     String JavaDoc FLAG_WRITABLE = "-W";
90     /** -N flag */
91     String JavaDoc VALUE_NO = "-N";
92     /** -Y flag */
93     String JavaDoc VALUE_YES = "-Y";
94     /** -O- flag */
95     String JavaDoc FLAG_QUIET = "-O-";
96     /** -C flag */
97     String JavaDoc FLAG_COMMENT = "-C";
98     /** -L flag */
99     String JavaDoc FLAG_LABEL = "-L";
100     /** ~d flag */
101     String JavaDoc VALUE_FROMDATE = "~d";
102     /** ~L flag */
103     String JavaDoc VALUE_FROMLABEL = "~L";
104     /** -O flag */
105     String JavaDoc FLAG_OUTPUT = "-O";
106     /** -U flag */
107     String JavaDoc FLAG_USER = "-U";
108     /** -F- flag */
109     String JavaDoc FLAG_NO_FILE = "-F-";
110     /** -B flag */
111     String JavaDoc FLAG_BRIEF = "-B";
112     /** -D flag */
113     String JavaDoc FLAG_CODEDIFF = "-D";
114     /** -GTC flag */
115     String JavaDoc FLAG_FILETIME_DEF = "-GTC";
116     /** -GTM flag */
117     String JavaDoc FLAG_FILETIME_MODIFIED = "-GTM";
118     /** -GTU flag */
119     String JavaDoc FLAG_FILETIME_UPDATED = "-GTU";
120     /** -GWR flag */
121     String JavaDoc FLAG_REPLACE_WRITABLE = "-GWR";
122     /** -GWS flag */
123     String JavaDoc FLAG_SKIP_WRITABLE = "-GWS";
124     /** -G- flag */
125     String JavaDoc FLAG_NO_GET = "-G-";
126 }
127
Popular Tags