Uses of Class
com.cloudbees.diff.Diff

Packages that use Diff
com.cloudbees.diff Pure-Java implementation of diff/patch capability. 
com.cloudbees.diff.provider Abstraction for configuring how to generate diff separately upfront prior to the diff computation. 
 

Uses of Diff in com.cloudbees.diff
 

Methods in com.cloudbees.diff that return Diff
static Diff Diff.diff(File f1, File f2, boolean ignoreWhitespace)
          Computes a diff between two files.
static Diff Diff.diff(List<String> lines1, List<String> lines2, boolean ignoreWhitespace)
          Compares two "files" that are passed in as a list of lines.
static Diff Diff.diff(Reader r1, Reader r2, boolean ignoreWhitespace)
          Create the differences of the content two streams.
 

Uses of Diff in com.cloudbees.diff.provider
 

Methods in com.cloudbees.diff.provider that return Diff
abstract  Diff DiffProvider.computeDiff(Reader r1, Reader r2)
          Create the differences of the content two streams.
 Diff BuiltInDiffProvider.computeDiff(Reader r1, Reader r2)
          Create the differences of the content two streams.
 Diff CmdlineDiffProvider.computeDiff(Reader r1, Reader r2)
          Create the differences of the content two streams.
 



Copyright © 2011-2012. All Rights Reserved.