Class DAVEditorHandler.DeltaOutputStreamWrapper

java.lang.Object
java.io.OutputStream
org.tmatesoft.svn.core.internal.io.dav.handlers.DAVEditorHandler.DeltaOutputStreamWrapper
All Implemented Interfaces:
java.io.Closeable, java.io.Flushable, java.lang.AutoCloseable
Enclosing class:
DAVEditorHandler

private class DAVEditorHandler.DeltaOutputStreamWrapper extends java.io.OutputStream
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
     
    private boolean
     
    private java.lang.String
     
  • Constructor Summary

    Constructors
    Constructor
    Description
    DeltaOutputStreamWrapper(boolean isDelta, java.lang.String path)
     
  • Method Summary

    Modifier and Type
    Method
    Description
     
    void
    write(byte[] b)
     
    void
    write(byte[] b, int off, int len)
     
    void
    write(int b)
     

    Methods inherited from class java.io.OutputStream

    close, flush, nullOutputStream

    Methods inherited from class java.lang.Object

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

    • myIsDelta

      private boolean myIsDelta
    • myDeltaGenerator

      private SVNDeltaGenerator myDeltaGenerator
    • myPath

      private java.lang.String myPath
  • Constructor Details

    • DeltaOutputStreamWrapper

      public DeltaOutputStreamWrapper(boolean isDelta, java.lang.String path)
  • Method Details

    • write

      public void write(int b) throws java.io.IOException
      Specified by:
      write in class java.io.OutputStream
      Throws:
      java.io.IOException
    • write

      public void write(byte[] b, int off, int len) throws java.io.IOException
      Overrides:
      write in class java.io.OutputStream
      Throws:
      java.io.IOException
    • write

      public void write(byte[] b) throws java.io.IOException
      Overrides:
      write in class java.io.OutputStream
      Throws:
      java.io.IOException
    • getDeltaGenerator

      private SVNDeltaGenerator getDeltaGenerator()