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
See Also:
  • Nested Class Summary

    Nested Classes
    Modifier and Type
    Class
    Description
    static enum 
    The type of difference being summarized.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
     
    private NodeKind
     
    private boolean
     
    private static final long
     

    Fields inherited from class java.util.EventObject

    source
  • 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

    Modifier and Type
    Method
    Description
     
     
    java.lang.String
     
    boolean
     
    java.lang.String
     

    Methods inherited from class java.util.EventObject

    getSource

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • Field Details

  • Constructor Details

    • 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 the NodeKind enumeration).
  • Method Details

    • 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 class java.util.EventObject
      Returns:
      The path.