01: /*
02: $Id: IPositionableDataInput.java,v 1.4 2005/02/17 11:16:56 vauclair Exp $
03:
04: Copyright (C) 2002-2005 Sebastien Vauclair
05:
06: This file is part of Extensible Java Profiler.
07:
08: Extensible Java Profiler is free software; you can redistribute it and/or
09: modify it under the terms of the GNU General Public License as published by
10: the Free Software Foundation; either version 2 of the License, or
11: (at your option) any later version.
12:
13: Extensible Java Profiler is distributed in the hope that it will be useful,
14: but WITHOUT ANY WARRANTY; without even the implied warranty of
15: MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16: GNU General Public License for more details.
17:
18: You should have received a copy of the GNU General Public License
19: along with Extensible Java Profiler; if not, write to the Free Software
20: Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21: */
22:
23: package ejp.presenter.parser;
24:
25: import java.io.IOException;
26:
27: /**
28: * @author vauclasn
29: *
30: * Instances of this classe are used to ...
31: */
32: public interface IPositionableDataInput extends IDataInput {
33: void position(long position_) throws IOException;
34: }
|