Class SVNDiffSummary
- java.lang.Object
-
- java.util.EventObject
-
- org.tigris.subversion.svnclientadapter.SVNDiffSummary
-
- All Implemented Interfaces:
java.io.Serializable
public class SVNDiffSummary extends java.util.EventObject
The event passed to the {@link DiffSummarizer.summarize(SVNDiffSummary)} API in response to path differences reported byISVNClientAdapter.diffSummarize(org.tigris.subversion.svnclientadapter.SVNUrl, org.tigris.subversion.svnclientadapter.SVNRevision, org.tigris.subversion.svnclientadapter.SVNUrl, org.tigris.subversion.svnclientadapter.SVNRevision, int, boolean)
.- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
SVNDiffSummary.SVNDiffKind
The type of difference being summarized.
-
Constructor Summary
Constructors Constructor Description SVNDiffSummary(java.lang.String path, SVNDiffSummary.SVNDiffKind diffKind, boolean propsChanged, int nodeKind)
This constructor is to be used by the native code.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SVNDiffSummary.SVNDiffKind
getDiffKind()
int
getNodeKind()
java.lang.String
getPath()
boolean
propsChanged()
java.lang.String
toString()
-
-
-
Constructor Detail
-
SVNDiffSummary
public SVNDiffSummary(java.lang.String path, SVNDiffSummary.SVNDiffKind diffKind, boolean propsChanged, int 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.propChanged
- Whether any properties have changed.nodeKind
- The type of node which changed (corresponds to theSVNNodeKind
enumeration).
-
-
Method Detail
-
getPath
public java.lang.String getPath()
- Returns:
- The path we have a diff for.
-
getDiffKind
public SVNDiffSummary.SVNDiffKind getDiffKind()
- Returns:
- The kind of summary this describes.
-
propsChanged
public boolean propsChanged()
- Returns:
- Whether any properties have changed.
-
getNodeKind
public int 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.
-
-