KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > gjt > jclasslib > io > ByteCodeOutput


1 /*
2     This library is free software; you can redistribute it and/or
3     modify it under the terms of the GNU General Public
4     License as published by the Free Software Foundation; either
5     version 2 of the license, or (at your option) any later version.
6 */

7
8 package org.gjt.jclasslib.io;
9
10 import java.io.DataOutput JavaDoc;
11
12 /**
13     Extends <tt>DataOutput</tt> to accomodate for a method to retrieve the number
14     of bytes written.
15
16     @author <a HREF="mailto:jclasslib@ej-technologies.com">Ingo Kegel</a>
17     @version $Revision: 1.3 $ $Date: 2003/07/08 14:04:28 $
18 */

19 public interface ByteCodeOutput extends DataOutput JavaDoc {
20
21     /**
22         Get the number of bytes written.
23         @return the number of bytes
24      */

25     public int getBytesWritten();
26     
27 }
28
Popular Tags