View Javadoc

1   /*
2    * #%L
3    * JavaHg
4    * %%
5    * Copyright (C) 2011 aragost Trifork ag
6    * %%
7    * Permission is hereby granted, free of charge, to any person obtaining a copy
8    * of this software and associated documentation files (the "Software"), to deal
9    * in the Software without restriction, including without limitation the rights
10   * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11   * copies of the Software, and to permit persons to whom the Software is
12   * furnished to do so, subject to the following conditions:
13   * 
14   * The above copyright notice and this permission notice shall be included in
15   * all copies or substantial portions of the Software.
16   * 
17   * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18   * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19   * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20   * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21   * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22   * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23   * THE SOFTWARE.
24   * #L%
25   */
26  package com.aragost.javahg.commands;
27  
28  import com.aragost.javahg.Changeset;
29  
30  /**
31   * An annotated line, holding the text of the line and the
32   * {@link Changeset} that introduced it.
33   */
34  public class AnnotateLine {
35  
36      private Changeset changeset;
37      private String line;
38  
39      /**
40       * @param changeset
41       *            a changeset.
42       * @param line
43       *            a single line of text.
44       */
45      public AnnotateLine(Changeset changeset, String line) {
46          if (changeset == null || line == null) {
47              throw new NullPointerException("changeset or line is null");
48          }
49          this.changeset = changeset;
50          this.line = line;
51      }
52  
53      /**
54       * @return the changeset.
55       */
56      public Changeset getChangeset() {
57          return changeset;
58      }
59  
60      /**
61       * @deprecated use getChangeset()
62       * @return
63       */
64      @Deprecated
65      public Changeset getChangeSet() {
66          return getChangeset();
67      }
68  
69      /**
70       * @return the line of text.
71       */
72      public String getLine() {
73          return line;
74      }
75  
76      @Override
77      public String toString() {
78          return getChangeset().toString() + ":" + getLine();
79      }
80  }