1 26 27 28 package org.objectweb.jonathan.apis.presentation; 29 30 import org.objectweb.jonathan.apis.resources.Chunk; 31 import org.objectweb.jonathan.apis.resources.ChunkProvider; 32 33 36 public interface MarshallerFactory { 37 38 43 Marshaller newMarshaller(); 44 45 52 UnMarshaller newUnMarshaller(ChunkProvider provider); 53 54 55 65 UnMarshaller newUnMarshaller(Chunk chunk, int read); 66 } 67 68 | Popular Tags |