APIDiffpublic class APIDiff extends Object The class contains the changes between two API objects; packages added,
removed and changed. The packages are represented by PackageDiff objects,
which contain the changes in each package, and so on.
See the file LICENSE.txt for copyright details. |
Fields Summary |
---|
public List | packagesAddedPackages added in the new API. | public List | packagesRemovedPackages removed in the new API. | public List | packagesChangedPackages changed in the new API. | public static String | oldAPIName_Name of the old API. | public static String | newAPIName_Name of the old API. | public double | pdiff |
Constructors Summary |
---|
public APIDiff()Default constructor.
oldAPIName_ = null;
newAPIName_ = null;
packagesAdded = new ArrayList(); // PackageAPI[]
packagesRemoved = new ArrayList(); // PackageAPI[]
packagesChanged = new ArrayList(); // PackageDiff[]
|
|