KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > tools > ant > taskdefs > cvslib > RCSFile


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.cvslib;
19
20 /**
21  * Represents a RCS File change.
22  *
23  */

24 class RCSFile {
25     private String JavaDoc name;
26     private String JavaDoc revision;
27     private String JavaDoc previousRevision;
28
29
30     RCSFile(final String JavaDoc name, final String JavaDoc rev) {
31         this(name, rev, null);
32     }
33
34
35     RCSFile(final String JavaDoc name,
36                   final String JavaDoc revision,
37                   final String JavaDoc previousRevision) {
38         this.name = name;
39         this.revision = revision;
40         if (!revision.equals(previousRevision)) {
41             this.previousRevision = previousRevision;
42         }
43     }
44
45     /**
46      * Gets the name of the RCSFile
47      * @return name of the file
48      */

49     String JavaDoc getName() {
50         return name;
51     }
52
53     /**
54      * Gets the revision number of the RCSFile
55      * @return the revision number (as String)
56      */

57     String JavaDoc getRevision() {
58         return revision;
59     }
60
61     /**
62      * Gets the previous revision of the RCSFile
63      * @return the previous revision number (as String)
64      */

65     String JavaDoc getPreviousRevision() {
66         return previousRevision;
67     }
68 }
69
70
Popular Tags