Home | History | Annotate | Download | only in compiler
      1 /* Copyright (C) 2003 Vladimir Roubtsov. All rights reserved.
      2  *
      3  * This program and the accompanying materials are made available under
      4  * the terms of the Common Public License v1.0 which accompanies this distribution,
      5  * and is available at http://www.eclipse.org/legal/cpl-v10.html
      6  *
      7  * $Id: IClassFormatOutput.java,v 1.1.1.1 2004/05/09 16:57:49 vlad_r Exp $
      8  */
      9 package com.vladium.jcd.compiler;
     10 
     11 import java.io.IOException;
     12 
     13 import com.vladium.jcd.lib.UDataOutputStream;
     14 
     15 // ----------------------------------------------------------------------------
     16 /**
     17  * Our class tables and nested table structures support this interface so that
     18  * they could be serialized into binary format as per .class layout format.
     19  *
     20  * @author (C) 2001, Vlad Roubtsov
     21  */
     22 public
     23 interface IClassFormatOutput
     24 {
     25     // public: ................................................................
     26 
     27     void writeInClassFormat (UDataOutputStream out) throws IOException;
     28 
     29 } // end of interface
     30 // ----------------------------------------------------------------------------
     31