Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

JLibDiff: Javadoc index of package JLibDiff.


Package Samples:

JLibDiff

Classes:

diff: The diff class compares two files. it compares also two BufferedReaders or two strings. after the comparison the vector will represents a list of hunk corresponding with blocks of difference. to generate a file of difference, one can instanciate as follows the class diff: diff d = new diff(file1,file2); which is equivalent to: diff d = new diff(); d.diffFile(file1,file2); To compare two BufferedReaders or two String we have to instanciate as follows: diff d = new diff(); d.diffBuffer(BufferedReader1,BufferedReader2); or: diff d = new diff(); d.diffString(String1,String2); The class diff includes ...
diff3: The diff3 class compares three files or three BufferedReaders. after comparison, the vector will represente a list of Hunk3 corresponding with blocks of difference. to generate Hunk3, one can instanciate as follows the class diff3 : diff3 d = new diff3(file1,file2,file3); which is equivalent to: diff3 d = new diff3(); d.diffFile(file1,file2,file3); To compaire three BufferedReader we have to instanciate as follows: diff3 d = new diff3(); d.diffBuffer(BufferedReader1,BufferedReader2,BufferedReader3); The class diff3 includes methods for examining, printing or saveing blocks of difference:(Hunk3). ...
Hunk: The Hunk class is a super class of classes HunkAdd , HunkChange and HunkDel .it is an abstarct class.
HunkAdd: The HunkAdd class represents a bloc of difference reliding addition(insertion).
HunkDel: The HunkDel class represents a bloc of difference that will be deleted.
HunkChange: The HunkChange class represents a bloc of difference reliding change.
JLibDiffAlgorithm: Title: $FileName: JLibDiffAlgorithm.java$
GnuDiffAlgorithm: Title: $FileName: GnuDiffAlgorithm.java$
DiffAlgorithm: Title: $FileName: DiffAlgorithm.java$
DiffTextPrinter: Title: $FileName: DiffTextPrinter.java$
FileData: Title: $FileName: FileData.java$
Builder: Title: $FileName: Builder.java$
SJDiff: Title: $FileName: SJDiff.java$
DiffFormatException: Title: $FileName: Util.java$
define
Hunk3Type
DiffMaker
Hunk3Visitor
JRCSMyersAlgorithm
DiffType
HunkVisitor
Hunk3Visitable

Home | Contact Us | Privacy Policy | Terms of Service