Interface ISVNInputFile
-
public interface ISVNInputFile
- Version:
- 1.3
-
-
Field Summary
Fields Modifier and Type Field Description static ISVNInputFile
DUMMY_INPUT_FILE
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
close()
long
getFilePointer()
long
length()
int
read()
int
read(byte[] b)
int
read(byte[] b, int off, int len)
void
seek(long pos)
-
-
-
Field Detail
-
DUMMY_INPUT_FILE
static final ISVNInputFile DUMMY_INPUT_FILE
-
-
Method Detail
-
seek
void seek(long pos) throws java.io.IOException
- Throws:
java.io.IOException
-
getFilePointer
long getFilePointer() throws java.io.IOException
- Throws:
java.io.IOException
-
read
int read() throws java.io.IOException
- Throws:
java.io.IOException
-
read
int read(byte[] b) throws java.io.IOException
- Throws:
java.io.IOException
-
read
int read(byte[] b, int off, int len) throws java.io.IOException
- Throws:
java.io.IOException
-
length
long length() throws java.io.IOException
- Throws:
java.io.IOException
-
close
void close() throws java.io.IOException
- Throws:
java.io.IOException
-
-