|
Last change
on this file was 36483, checked in by stoecker, 5 months ago |
|
set eol-style, fix checkstyle issues, add ignores
|
-
Property svn:eol-style
set to
native
|
|
File size:
325 bytes
|
| Line | |
|---|
| 1 | package org.j7zip.SevenZip;
|
|---|
| 2 |
|
|---|
| 3 | public abstract class IInStream extends java.io.InputStream
|
|---|
| 4 | {
|
|---|
| 5 | static public final int STREAM_SEEK_SET = 0;
|
|---|
| 6 | static public final int STREAM_SEEK_CUR = 1;
|
|---|
| 7 | // static public final int STREAM_SEEK_END = 2;
|
|---|
| 8 | public abstract long Seek(long offset, int seekOrigin) throws java.io.IOException ;
|
|---|
| 9 | }
|
|---|
| 10 |
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.