Package jdiff
Class APIDiff
- java.lang.Object
-
- jdiff.APIDiff
-
public class APIDiff extends java.lang.ObjectThe 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.
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringnewAPIName_Name of the old API.static java.lang.StringoldAPIName_Name of the old API.java.util.ListpackagesAddedPackages added in the new API.java.util.ListpackagesChangedPackages changed in the new API.java.util.ListpackagesRemovedPackages removed in the new API.doublepdiff
-
Constructor Summary
Constructors Constructor Description APIDiff()Default constructor.
-
-
-
Field Detail
-
packagesAdded
public java.util.List packagesAdded
Packages added in the new API.
-
packagesRemoved
public java.util.List packagesRemoved
Packages removed in the new API.
-
packagesChanged
public java.util.List packagesChanged
Packages changed in the new API.
-
oldAPIName_
public static java.lang.String oldAPIName_
Name of the old API.
-
newAPIName_
public static java.lang.String newAPIName_
Name of the old API.
-
pdiff
public double pdiff
-
-