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 }