| java.lang.Object org.tmatesoft.svn.core.wc.SVNDiffStatus
SVNDiffStatus | public class SVNDiffStatus (Code) | | The SVNDiffStatus class is used to provide short information on path changes
during diff status operations.
version: 1.1.1 author: TMate Software Ltd. since: 1.1.0 |
SVNDiffStatus | public SVNDiffStatus(File file, SVNURL url, String path, SVNStatusType type, boolean propsModified, SVNNodeKind kind)(Code) | | Instantiates a new object.
Parameters: file - a wc item path Parameters: url - an item url Parameters: path - a relative item path (may be null) Parameters: type - a type of path change Parameters: propsModified - sets whether properties are modified Parameters: kind - a path kind (dir or file) |
getFile | public File getFile()(Code) | | Returns File representation of the Working Copy item path.
wc item path as File |
getKind | public SVNNodeKind getKind()(Code) | | Returns the node kind of the Working Copy item.
node kind |
getModificationType | public SVNStatusType getModificationType()(Code) | | Returns the type of modification for the current
item.
a path change type |
getPath | public String getPath()(Code) | | Returns a relative path of the item.
Set for Working Copy items and relative to the anchor of diff status operation.
item path |
getURL | public SVNURL getURL()(Code) | | Url of the item.
item url |
isPropertiesModified | public boolean isPropertiesModified()(Code) | | Says whether properties of the Working Copy item are modified.
true if properties were modifiedin a particular revision, false otherwise |
|
|