blob: 6072ebd3d36c9cf5e79c278eff0d6216682d953b [file] [log] [blame]
package aQute.lib.codec;
import java.io.*;
import java.lang.reflect.*;
public interface Codec {
Object decode(Reader in, Type type) throws Exception;
void encode(Type t, Object o, Appendable out) throws Exception;
}