Class ChangePath
java.lang.Object
org.apache.subversion.javahl.types.ChangePath
- All Implemented Interfaces:
Serializable
public class ChangePath extends Object implements Serializable
- See Also:
- Serialized Form
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classChangePath.ActionActions which may have occurred to this path. -
Constructor Summary
Constructors Constructor Description ChangePath(String path, long copySrcRevision, String copySrcPath, ChangePath.Action action, NodeKind nodeKind, Tristate textMods, Tristate propMods)Constructor to be called from the native code -
Method Summary
Modifier and Type Method Description ChangePath.ActiongetAction()Retrieve action performedStringgetCopySrcPath()Retrieve the copy source path (if any)longgetCopySrcRevision()Retrieve the copy source revision (if any)NodeKindgetNodeKind()Retrieve the node kindStringgetPath()Retrieve the path to the committed itemTristategetPropMods()Retrieve whether the properties were modified.TristategetTextMods()Retrieve whether the text was modified.
-
Constructor Details
-
ChangePath
public ChangePath(String path, long copySrcRevision, String copySrcPath, ChangePath.Action action, NodeKind nodeKind, Tristate textMods, Tristate propMods)Constructor to be called from the native code- Parameters:
path- path of the commit itemcopySrcRevision- copy source revision (if any)copySrcPath- copy source path (if any)action- action performednodeKind- the kind of the changed path
-
-
Method Details
-
getPath
Retrieve the path to the committed item- Returns:
- the path to the committed item
-
getCopySrcRevision
public long getCopySrcRevision()Retrieve the copy source revision (if any)- Returns:
- the copy source revision (if any)
-
getCopySrcPath
Retrieve the copy source path (if any)- Returns:
- the copy source path (if any)
-
getAction
Retrieve action performed- Returns:
- action performed
-
getNodeKind
Retrieve the node kind- Returns:
- the node kind
-
getTextMods
Retrieve whether the text was modified.- Returns:
- the text mod state
-
getPropMods
Retrieve whether the properties were modified.- Returns:
- the prop mod state
-