Package jdiff

Class APIDiff


  • public class APIDiff
    extends java.lang.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.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static java.lang.String newAPIName_
      Name of the old API.
      static java.lang.String oldAPIName_
      Name of the old API.
      java.util.List packagesAdded
      Packages added in the new API.
      java.util.List packagesChanged
      Packages changed in the new API.
      java.util.List packagesRemoved
      Packages removed in the new API.
      double pdiff  
    • Constructor Summary

      Constructors 
      Constructor Description
      APIDiff()
      Default constructor.
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • 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
    • Constructor Detail

      • APIDiff

        public APIDiff()
        Default constructor.