Package org.apache.subversion.javahl
Class DiffSummary
java.lang.Object
java.util.EventObject
org.apache.subversion.javahl.DiffSummary
- All Implemented Interfaces:
Serializable
The event passed to the
DiffSummaryCallback.onSummary(org.apache.subversion.javahl.DiffSummary)
API
in response to path differences reported by ISVNClient.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:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic enum
The type of difference being summarized. -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate DiffSummary.DiffKind
private NodeKind
private boolean
private static final long
Fields inherited from class java.util.EventObject
source
-
Constructor Summary
ConstructorsConstructorDescriptionDiffSummary
(String path, DiffSummary.DiffKind diffKind, boolean propsChanged, NodeKind nodeKind) This constructor is to be used by the native code. -
Method Summary
Methods inherited from class java.util.EventObject
getSource
-
Field Details
-
serialVersionUID
private static final long serialVersionUID- See Also:
-
diffKind
-
propsChanged
private boolean propsChanged -
nodeKind
-
-
Constructor Details
-
DiffSummary
public DiffSummary(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 Details
-
getPath
- Returns:
- The path we have a diff for.
-
getDiffKind
- Returns:
- The kind of summary this describes.
-
propsChanged
public boolean propsChanged()- Returns:
- Whether any properties have changed.
-
getNodeKind
- Returns:
- The type of node which changed (corresponds to the
NodeKind
enumeration).
-
toString
- Overrides:
toString
in classEventObject
- Returns:
- The path.
-