1 7 package org.jboss.remoting.marshal; 8 9 import java.io.IOException ; 10 import java.io.OutputStream ; 11 import java.io.Serializable ; 12 13 28 public interface Marshaller extends Serializable  29 { 30 39 public void write(Object dataObject, OutputStream output) throws IOException ; 40 41 public Marshaller cloneMarshaller() throws CloneNotSupportedException ; 42 43 } | Popular Tags |