View Javadoc
1   /*
2    * Copyright (C) 2007-2012 Argeo GmbH
3    *
4    * Licensed under the Apache License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    *         http://www.apache.org/licenses/LICENSE-2.0
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package org.argeo.slc.diff;
17  
18  /**
19   * A value missing in one of the file. If its position is related to expected,
20   * this means it is a left over in the reached, if its position is related to
21   * the reached it means that it is missing from the reached. If the value is
22   * null it means that the entire line is missing.
23   */
24  public class DiffMissing extends DiffIssueKey {
25  
26  	public DiffMissing(DiffPosition position, DiffKey key) {
27  		super(position);
28  		super.key = key;
29  	}
30  
31  	@Override
32  	public String toString() {
33  		if (position.relatedFile == RelatedFile.EXPECTED) {
34  			return position + ": left over " + super.toString();
35  		} else if (position.relatedFile == RelatedFile.REACHED) {
36  			return position + ": missing " + super.toString();
37  		}
38  		return super.toString();
39  	}
40  
41  }