org.tmatesoft.svn.core.wc

Class SVNDiffStatus

public class SVNDiffStatus extends Object

The SVNDiffStatus class is used to provide short information on path changes during diff status operations.

Since: 1.1.0

Version: 1.1.1

Author: TMate Software Ltd.

Constructor Summary
SVNDiffStatus(File file, SVNURL url, String path, SVNStatusType type, boolean propsModified, SVNNodeKind kind)
Instantiates a new object.
Method Summary
FilegetFile()
Returns File representation of the Working Copy item path.
SVNNodeKindgetKind()
Returns the node kind of the Working Copy item.
SVNStatusTypegetModificationType()
Returns the type of modification for the current item.
StringgetPath()
Returns a relative path of the item.
SVNURLgetURL()
Url of the item.
booleanisPropertiesModified()
Says whether properties of the Working Copy item are modified.

Constructor Detail

SVNDiffStatus

public SVNDiffStatus(File file, SVNURL url, String path, SVNStatusType type, boolean propsModified, SVNNodeKind kind)
Instantiates a new object.

Parameters: file a wc item path url an item url path a relative item path (may be null) type a type of path change propsModified sets whether properties are modified kind a path kind (dir or file)

Method Detail

getFile

public File getFile()
Returns File representation of the Working Copy item path.

Returns: wc item path as File

getKind

public SVNNodeKind getKind()
Returns the node kind of the Working Copy item.

Returns: node kind

getModificationType

public SVNStatusType getModificationType()
Returns the type of modification for the current item.

Returns: a path change type

getPath

public String getPath()
Returns a relative path of the item. Set for Working Copy items and relative to the anchor of diff status operation.

Returns: item path

getURL

public SVNURL getURL()
Url of the item.

Returns: item url

isPropertiesModified

public boolean isPropertiesModified()
Says whether properties of the Working Copy item are modified.

Returns: true if properties were modified in a particular revision, false otherwise

Copyright © 2004-2007 TMate Software Ltd. All Rights Reserved.