| Package | Description |
|---|---|
| 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.
|
| Modifier and Type | Method and Description |
|---|---|
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.
|
| Modifier and Type | Method and Description |
|---|---|
Diff |
CmdlineDiffProvider.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.
|
abstract Diff |
DiffProvider.computeDiff(Reader r1,
Reader r2)
Create the differences of the content two streams.
|
Copyright © 2011–2014. All rights reserved.