public class PatchCreateOptions
extends java.lang.Object
| Constructor and Description | 
|---|
PatchCreateOptions()  | 
| Modifier and Type | Method and Description | 
|---|---|
boolean | 
isIgnoreWhitespace()
Gets the option to ignore whitespace when comparing lines. 
 | 
boolean | 
isIncludeNewFiles()
Gets the option to include new (or removed) files in the patch. 
 | 
boolean | 
isRecursive()
Gets the option to recursively compare subdirectories. 
 | 
void | 
setIgnoreWhitespace(boolean ignoreWhitespace)
Sets the option to ignore whitespace when comparing lines. 
 | 
void | 
setIncludeNewFiles(boolean includeNewFiles)
Sets the option to include new (or removed) files in the patch. 
 | 
void | 
setRecursive(boolean recursive)
Sets the option to recursively compare subdirectories. 
 | 
public void setRecursive(boolean recursive)
recursive - true if subdirectories will be compared.public boolean isRecursive()
true if subdirectories will be compared.public void setIncludeNewFiles(boolean includeNewFiles)
includeNewFiles - true if new files will be included.public boolean isIncludeNewFiles()
true if new files will be included.public void setIgnoreWhitespace(boolean ignoreWhitespace)
ignoreWhitespace - true if whitespace will be ignored.public boolean isIgnoreWhitespace()
true if whitespace will be ignored.