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  /** The position of a diff issue within the test resource. */
19  public abstract class DiffPosition implements Comparable<DiffPosition> {
20  	protected RelatedFile relatedFile;
21  
22  	public DiffPosition(RelatedFile relatedFile) {
23  		super();
24  		this.relatedFile = relatedFile;
25  	}
26  
27  	// For Hibernate
28  	DiffPosition() {
29  	}
30  
31  	public RelatedFile getRelatedFile() {
32  		return relatedFile;
33  	}
34  
35  	// Added to enable the new data model for persisting TabularDiffTestResult
36  	@SuppressWarnings("unused")
37  	private Boolean getIsReached() {
38  		return relatedFile.equals(RelatedFile.REACHED);
39  	}
40  
41  	@SuppressWarnings("unused")
42  	private void setIsReached(Boolean isReached) {
43  		this.relatedFile = (isReached ? RelatedFile.REACHED
44  				: RelatedFile.EXPECTED);
45  	}
46  
47  }