| java.lang.Object org.tmatesoft.svn.core.wc.SVNDiffOptions
SVNDiffOptions | public class SVNDiffOptions (Code) | | The SVNDiffOptions class is used to contain some rules for controlling the
result of comparing two files. Such rules are used in diff/merge/annotate operations
when it's necessary to say whether a file should be or should not be considered as
changed.
version: 1.1.1 author: TMate Software Ltd. since: 1.1.0 |
Constructor Summary | |
public | SVNDiffOptions() Creates a new diff options object. | public | SVNDiffOptions(boolean ignoreAllWhitespace, boolean ignoreAmountOfWhiteSpace, boolean ignoreEOLStyle) Creates a new diff options object. |
Method Summary | |
public boolean | isIgnoreAllWhitespace() Says whether all whitespaces must be ignored while comparing files. | public boolean | isIgnoreAmountOfWhitespace() Says whether amont of whitespaces must be ignored while comparing files. | public boolean | isIgnoreEOLStyle() Says whether eol style must be ignored while comparing files. | public void | setIgnoreAllWhitespace(boolean isIgnoreAllWhitespace) Sets whether all whitespaces must be ignored while comparing files. | public void | setIgnoreAmountOfWhitespace(boolean isIgnoreAmountOfWhitespace) Sets whether number of whitespaces must be ignored while comparing files. | public void | setIgnoreEOLStyle(boolean isIgnoreEOLStyle) Sets whether eol style must be ignored while comparing files. |
SVNDiffOptions | public SVNDiffOptions()(Code) | | Creates a new diff options object.
Equivalent to SVNDiffOptions(false, false, false) .
|
SVNDiffOptions | public SVNDiffOptions(boolean ignoreAllWhitespace, boolean ignoreAmountOfWhiteSpace, boolean ignoreEOLStyle)(Code) | | Creates a new diff options object.
Parameters: ignoreAllWhitespace - controls whether whitespace differences must be ignored Parameters: ignoreAmountOfWhiteSpace - controls whether number of whitespaces must be ignored Parameters: ignoreEOLStyle - controls whether eol-marker differences must be ignored |
isIgnoreAllWhitespace | public boolean isIgnoreAllWhitespace()(Code) | | Says whether all whitespaces must be ignored while comparing files.
true if ignored, otherwise false |
isIgnoreAmountOfWhitespace | public boolean isIgnoreAmountOfWhitespace()(Code) | | Says whether amont of whitespaces must be ignored while comparing files.
true if ignored, otherwise false |
isIgnoreEOLStyle | public boolean isIgnoreEOLStyle()(Code) | | Says whether eol style must be ignored while comparing files.
true if ignored, otherwise false |
setIgnoreAllWhitespace | public void setIgnoreAllWhitespace(boolean isIgnoreAllWhitespace)(Code) | | Sets whether all whitespaces must be ignored while comparing files.
Parameters: isIgnoreAllWhitespace - controls whether whitespaces are to be ignored |
setIgnoreAmountOfWhitespace | public void setIgnoreAmountOfWhitespace(boolean isIgnoreAmountOfWhitespace)(Code) | | Sets whether number of whitespaces must be ignored while comparing files.
Parameters: isIgnoreAmountOfWhitespace - controls whether number of whitespaces isto be ignored |
setIgnoreEOLStyle | public void setIgnoreEOLStyle(boolean isIgnoreEOLStyle)(Code) | | Sets whether eol style must be ignored while comparing files.
Parameters: isIgnoreEOLStyle - controls whether eol style isto be ignored |
|
|