| java.lang.Object net.sf.clirr.core.Checker
Checker | final public class Checker implements ApiDiffDispatcher(Code) | | This is the main class to be used by Clirr frontends,
it implements the checking functionality of Clirr.
Frontends can create an instance of this class
and register themselves as DiffListeners, they are then
informed whenever an API change is detected by the
reportDiffs method.
author: lkuehne |
Checker | public Checker()(Code) | | Creates a new Checker.
|
reportDiffs | public void reportDiffs(JavaType[] compatibilityBaseline, JavaType[] currentVersion) throws CheckerException(Code) | | Checks two sets of classes for api changes and reports
them to the DiffListeners.
Parameters: compatibilityBaseline - the classes that form thecompatibility baseline to check against Parameters: currentVersion - the classes that are checked forcompatibility with compatibilityBaseline |
|
|