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 SVNDeltaGenerator
myDeltaGenerator
private boolean
myIsDelta
private java.lang.String
myPath
-
Constructor Summary
Constructors Constructor Description DeltaOutputStreamWrapper(boolean isDelta, java.lang.String path)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description private SVNDeltaGenerator
getDeltaGenerator()
void
write(byte[] b)
void
write(byte[] b, int off, int len)
void
write(int b)
-
-
-
Field Detail
-
myIsDelta
private boolean myIsDelta
-
myDeltaGenerator
private SVNDeltaGenerator myDeltaGenerator
-
myPath
private java.lang.String myPath
-
-
Method Detail
-
write
public void write(int b) throws java.io.IOException
- Specified by:
write
in classjava.io.OutputStream
- Throws:
java.io.IOException
-
write
public void write(byte[] b, int off, int len) throws java.io.IOException
- Overrides:
write
in classjava.io.OutputStream
- Throws:
java.io.IOException
-
write
public void write(byte[] b) throws java.io.IOException
- Overrides:
write
in classjava.io.OutputStream
- Throws:
java.io.IOException
-
getDeltaGenerator
private SVNDeltaGenerator getDeltaGenerator()
-
-