Uses of Class
org.osjava.jardiff.DiffException

Packages that use DiffException
org.osjava.jardiff   
 

Uses of DiffException in org.osjava.jardiff
 

Methods in org.osjava.jardiff that throw DiffException
 void StreamDiffHandler.startDiff(String oldJar, String newJar)
          Start the diff.
 void StreamDiffHandler.startOldContents()
          Start the list of old contents.
 void StreamDiffHandler.startNewContents()
          Start the list of old contents.
 void StreamDiffHandler.contains(ClassInfo info)
          Add a contained class.
 void StreamDiffHandler.endOldContents()
          End the list of old contents.
 void StreamDiffHandler.endNewContents()
          End the list of new contents.
 void StreamDiffHandler.startRemoved()
          Start the removed node.
 void StreamDiffHandler.classRemoved(ClassInfo info)
          Write out class info for a removed class.
 void StreamDiffHandler.endRemoved()
          End the removed section.
 void StreamDiffHandler.startAdded()
          Start the added section.
 void StreamDiffHandler.classAdded(ClassInfo info)
          Write out the class info for an added class.
 void StreamDiffHandler.endAdded()
          End the added section.
 void StreamDiffHandler.startChanged()
          Start the changed section.
 void StreamDiffHandler.startClassChanged(String internalName)
          Start a changed section for an individual class.
 void StreamDiffHandler.fieldRemoved(FieldInfo info)
          Write out info about a removed field.
 void StreamDiffHandler.methodRemoved(MethodInfo info)
          Write out info about a removed method.
 void StreamDiffHandler.fieldAdded(FieldInfo info)
          Write out info about an added field.
 void StreamDiffHandler.methodAdded(MethodInfo info)
          Write out info about a added method.
 void StreamDiffHandler.classChanged(ClassInfo oldInfo, ClassInfo newInfo)
          Write out info aboout a changed class.
 void StreamDiffHandler.fieldChanged(FieldInfo oldInfo, FieldInfo newInfo)
          Write out info aboout a changed field.
 void StreamDiffHandler.methodChanged(MethodInfo oldInfo, MethodInfo newInfo)
          Write out info aboout a changed method.
 void StreamDiffHandler.endClassChanged()
          End the changed section for an individual class.
 void StreamDiffHandler.endChanged()
          End the changed section.
 void StreamDiffHandler.endDiff()
          End the diff.
 void DOMDiffHandler.startDiff(String oldJar, String newJar)
          Start the diff.
 void DOMDiffHandler.startOldContents()
          Start the list of old contents.
 void DOMDiffHandler.startNewContents()
          Start the list of old contents.
 void DOMDiffHandler.contains(ClassInfo info)
          Add a contained class.
 void DOMDiffHandler.endOldContents()
          End the list of old contents.
 void DOMDiffHandler.endNewContents()
          End the list of new contents.
 void DOMDiffHandler.startRemoved()
          Start the removed node.
 void DOMDiffHandler.classRemoved(ClassInfo info)
          Write out class info for a removed class.
 void DOMDiffHandler.endRemoved()
          End the removed section.
 void DOMDiffHandler.startAdded()
          Start the added section.
 void DOMDiffHandler.classAdded(ClassInfo info)
          Write out the class info for an added class.
 void DOMDiffHandler.endAdded()
          End the added section.
 void DOMDiffHandler.startChanged()
          Start the changed section.
 void DOMDiffHandler.startClassChanged(String internalName)
          Start a changed section for an individual class.
 void DOMDiffHandler.fieldRemoved(FieldInfo info)
          Write out info about a removed field.
 void DOMDiffHandler.methodRemoved(MethodInfo info)
          Write out info about a removed method.
 void DOMDiffHandler.fieldAdded(FieldInfo info)
          Write out info about an added field.
 void DOMDiffHandler.methodAdded(MethodInfo info)
          Write out info about a added method.
 void DOMDiffHandler.classChanged(ClassInfo oldInfo, ClassInfo newInfo)
          Write out info aboout a changed class.
 void DOMDiffHandler.fieldChanged(FieldInfo oldInfo, FieldInfo newInfo)
          Write out info aboout a changed field.
 void DOMDiffHandler.methodChanged(MethodInfo oldInfo, MethodInfo newInfo)
          Write out info aboout a changed method.
 void DOMDiffHandler.endClassChanged()
          End the changed section for an individual class.
 void DOMDiffHandler.endChanged()
          End the changed section.
 void DOMDiffHandler.endDiff()
          End the diff.
 void DiffHandler.startDiff(String a, String b)
          Start a diff between two versions, where string a is the old version and string b is the new version.
 void DiffHandler.startOldContents()
          Start the list of old contents.
 void DiffHandler.startNewContents()
          Start the list of new contents.
 void DiffHandler.contains(ClassInfo info)
          Add a contained class.
 void DiffHandler.endOldContents()
          End the list of old contents.
 void DiffHandler.endNewContents()
          End the list of new contents.
 void DiffHandler.startRemoved()
          Start the list of removed classes.
 void DiffHandler.classRemoved(ClassInfo classinfo)
          Notification that a class was removed.
 void DiffHandler.endRemoved()
          End of list of removed classes.
 void DiffHandler.startAdded()
          Start of list of added classes.
 void DiffHandler.classAdded(ClassInfo classinfo)
          Notification that a class was added.
 void DiffHandler.endAdded()
          End of list of removed classes.
 void DiffHandler.startChanged()
          Start list of changed classes.
 void DiffHandler.startClassChanged(String string)
          Start information about class changes for the classname passed.
 void DiffHandler.fieldRemoved(FieldInfo fieldinfo)
          The field was removed for the current class that has changed.
 void DiffHandler.methodRemoved(MethodInfo methodinfo)
          The method was removed for the current class that has changed.
 void DiffHandler.fieldAdded(FieldInfo fieldinfo)
          The field was added for the current class that has changed.
 void DiffHandler.methodAdded(MethodInfo methodinfo)
          The method was added for the current class that has changed.
 void DiffHandler.classChanged(ClassInfo oldClassinfo, ClassInfo newClassinfo)
          The current class has changed.
 void DiffHandler.fieldChanged(FieldInfo oldFieldinfo, FieldInfo newFieldinfo)
          A field on the current class has changed.
 void DiffHandler.methodChanged(MethodInfo oldMethodInfo, MethodInfo newMethodInfo)
          A method on the current class has changed.
 void DiffHandler.endClassChanged()
          End of changes for the current class.
 void DiffHandler.endChanged()
          End of class changes.
 void DiffHandler.endDiff()
          End of the diff.
 void JarDiff.loadOldClasses(URL loc)
          Load old classes from the specified URL.
 void JarDiff.loadNewClasses(URL loc)
          Load new classes from the specified URL.
 void JarDiff.loadOldClasses(File file)
          Load old classes from the specified File.
 void JarDiff.loadNewClasses(File file)
          Load new classes from the specified File.
 void JarDiff.diff(DiffHandler handler, DiffCriteria criteria)
          Perform a diff sending the output to the specified handler, using the specified criteria to select diffs.
 

Constructors in org.osjava.jardiff that throw DiffException
StreamDiffHandler()
          Create a new StreamDiffHandler which writes to System.out
StreamDiffHandler(OutputStream out)
          Create a new StreamDiffHandler with the specified OutputStream.
DOMDiffHandler()
          Create a new DOMDiffHandler which writes to System.out
DOMDiffHandler(Transformer transformer, Result result)
          Create a new DOMDiffHandler with the specified Transformer and Result.
 



Copyright © 2005-2006 OSJava. All Rights Reserved.