X-Git-Url: http://git.argeo.org/?a=blobdiff_plain;f=runtime%2Forg.argeo.slc.support.simple%2Fsrc%2Fmain%2Fjava%2Forg%2Fargeo%2Fslc%2Fdiff%2FDiffResult.java;h=485b7712edc8e18b4a21033fe19967ed42aa6ae5;hb=9006d6fe7ecafaad851ecf223a3e0288e36fd7d4;hp=b42d1153b778c241c135569b95d7bfd19080fdce;hpb=1fdb1b4e7b1d2b0cabb6483238301b857a6392fa;p=gpl%2Fargeo-slc.git diff --git a/runtime/org.argeo.slc.support.simple/src/main/java/org/argeo/slc/diff/DiffResult.java b/runtime/org.argeo.slc.support.simple/src/main/java/org/argeo/slc/diff/DiffResult.java index b42d1153b..485b7712e 100644 --- a/runtime/org.argeo.slc.support.simple/src/main/java/org/argeo/slc/diff/DiffResult.java +++ b/runtime/org.argeo.slc.support.simple/src/main/java/org/argeo/slc/diff/DiffResult.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2010 Mathieu Baudier + * Copyright (C) 2007-2012 Mathieu Baudier * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -13,16 +13,19 @@ * See the License for the specific language governing permissions and * limitations under the License. */ - package org.argeo.slc.diff; import java.util.List; +import java.util.Map; /** * The result of a diff. Can be subclassed to provided more structured * information. */ public interface DiffResult { + /** Summary information, alphabetically ordered key/value pairs */ + public Map getSummary(); + /** The list of issues, a zero size meaning that the diff succeeded. */ public List getIssues(); }