FileDocCategorySizeDatePackage
APIDiff.javaAPI DocAndroid 1.5 API1235Wed May 06 22:41:22 BST 2009jdiff

APIDiff

public 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.
author
Matthew Doar, mdoar@pobox.com

Fields Summary
public List
packagesAdded
Packages added in the new API.
public List
packagesRemoved
Packages removed in the new API.
public List
packagesChanged
Packages 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[]
    
Methods Summary