org.tmatesoft.svn.core.wc.admin
public class SVNChangeEntry extends Object
Since: 1.1.1
Version: 1.1.1
Field Summary | |
---|---|
static char | TYPE_ADDED
Char 'A' (item added). |
static char | TYPE_DELETED
Char 'D' (item deleted). |
static char | TYPE_UPDATED
Char 'U' (item updated). |
Constructor Summary | |
---|---|
SVNChangeEntry(String path, SVNNodeKind kind, char type, String copyFromPath, long copyFromRevision, boolean hasTextModifications, boolean hasPropModifications)
Constructs a change entry object.
|
Method Summary | |
---|---|
String | getCopyFromPath()
Returns a copy-from source path.
|
long | getCopyFromRevision()
Returns a copy-from source revision.
|
SVNNodeKind | getKind()
Returns the node kind of the item.
|
String | getPath()
Returns the absolute path of the changed item represented by
this object.
|
char | getType()
Returns the type of the item change.
|
boolean | hasPropertyModifications()
Says whether the item's properties were
modified.
|
boolean | hasTextModifications()
Says whether the file item's contents were
modified. |
Parameters: path the path of a changed item type a change type (one of static fields) copyFromPath a copy-from source path (if the item is copied) copyFromRevision a revision of a copy-from source (if the item is copied) hasTextModifications true if path
is a file and it's modified, false
otherwise hasPropModifications true if the item has
property modifications
Returns: a copy-from path
Returns: a copy-from revision number
Returns: an item node kind
Returns: the absolute path
Returns: a char that is one of static fields of this class
Returns: true if the item has property modifications, otherwise false
Returns: true if the item has text modifications, otherwise false