Package org.tigris.subversion.javahl
Class SVNInputStream.Outputer
- java.lang.Object
-
- org.tigris.subversion.javahl.SVNInputStream.Outputer
-
- All Implemented Interfaces:
OutputInterface
- Enclosing class:
- SVNInputStream
public class SVNInputStream.Outputer extends java.lang.Object implements OutputInterface
this class implements the connection to SVNAdmin
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
close()
close the outputint
write(byte[] data)
write the bytes in data to java
-
-
-
Method Detail
-
write
public int write(byte[] data) throws java.io.IOException
write the bytes in data to java- Specified by:
write
in interfaceOutputInterface
- Parameters:
data
- the data to be written- Throws:
java.io.IOException
- throw in case of problems.
-
close
public void close() throws java.io.IOException
close the output- Specified by:
close
in interfaceOutputInterface
- Throws:
java.io.IOException
- throw in case of problems.
-
-