Package org.apache.subversion.javahl
Class DiffSummary
- java.lang.Object
-
- java.util.EventObject
-
- org.apache.subversion.javahl.DiffSummary
-
- All Implemented Interfaces:
java.io.Serializable
public class DiffSummary extends java.util.EventObject
The event passed to theDiffSummaryCallback.onSummary(org.apache.subversion.javahl.DiffSummary)
API in response to path differences reported byISVNClient.diffSummarize(java.lang.String, org.apache.subversion.javahl.types.Revision, java.lang.String, org.apache.subversion.javahl.types.Revision, org.apache.subversion.javahl.types.Depth, java.util.Collection<java.lang.String>, boolean, org.apache.subversion.javahl.callback.DiffSummaryCallback)
.- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
DiffSummary.DiffKind
The type of difference being summarized.
-
Field Summary
Fields Modifier and Type Field Description private DiffSummary.DiffKind
diffKind
private NodeKind
nodeKind
private boolean
propsChanged
private static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description DiffSummary(java.lang.String path, DiffSummary.DiffKind diffKind, boolean propsChanged, NodeKind nodeKind)
This constructor is to be used by the native code.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DiffSummary.DiffKind
getDiffKind()
NodeKind
getNodeKind()
java.lang.String
getPath()
boolean
propsChanged()
java.lang.String
toString()
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
diffKind
private DiffSummary.DiffKind diffKind
-
propsChanged
private boolean propsChanged
-
nodeKind
private NodeKind nodeKind
-
-
Constructor Detail
-
DiffSummary
public DiffSummary(java.lang.String path, DiffSummary.DiffKind diffKind, boolean propsChanged, NodeKind nodeKind)
This constructor is to be used by the native code.- Parameters:
path
- The path we have a diff for.diffKind
- The kind of diff this describes.propsChanged
- Whether any properties have changed.nodeKind
- The type of node which changed (corresponds to theNodeKind
enumeration).
-
-
Method Detail
-
getPath
public java.lang.String getPath()
- Returns:
- The path we have a diff for.
-
getDiffKind
public DiffSummary.DiffKind getDiffKind()
- Returns:
- The kind of summary this describes.
-
propsChanged
public boolean propsChanged()
- Returns:
- Whether any properties have changed.
-
getNodeKind
public NodeKind getNodeKind()
- Returns:
- The type of node which changed (corresponds to the
NodeKind
enumeration).
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.util.EventObject
- Returns:
- The path.
-
-