]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.support.simple/src/main/java/org/argeo/slc/diff/DiffNotMatched.java
Download process log
[gpl/argeo-slc.git] / runtime / org.argeo.slc.support.simple / src / main / java / org / argeo / slc / diff / DiffNotMatched.java
1 /*
2 * Copyright (C) 2010 Mathieu Baudier <mbaudier@argeo.org>
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
17 package org.argeo.slc.diff;
18
19 /** Diff issue where reached and expected values are different. */
20 public class DiffNotMatched extends DiffIssueKey {
21 private final Object expected;
22 private final Object reached;
23
24 public DiffNotMatched(DiffPosition position, Object expected, Object reached) {
25 super(position);
26 this.expected = expected;
27 this.reached = reached;
28 }
29
30 public DiffNotMatched(DiffPosition position, Object expected,
31 Object reached, DiffKey key) {
32 super(position, key);
33 this.expected = expected;
34 this.reached = reached;
35 }
36
37 public Object getExpected() {
38 return expected;
39 }
40
41 public Object getReached() {
42 return reached;
43 }
44
45 @Override
46 public String toString() {
47 String result = position + ": not matched " + expected + " <> "
48 + reached;
49 if (super.key != null) {
50 result = result + " - Key: " + super.toString();
51 }
52
53 return result;
54 }
55
56 }