KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > coach > idltree > IdlWritable


1 package org.coach.idltree;
2
3 public interface IdlWritable {
4     /**
5      * Object which implement the IdlWritable interface must implement
6      * the write() operation.
7      *
8      * @param w The IdlWriter object to write to.
9      */

10     public void write(IdlWriter w);
11 }
Popular Tags