blob: 6072ebd3d36c9cf5e79c278eff0d6216682d953b [file] [log] [blame]
Stuart McCullochbb014372012-06-07 21:57:32 +00001package aQute.lib.codec;
2
3import java.io.*;
4import java.lang.reflect.*;
5
6public interface Codec {
Stuart McCulloch2286f232012-06-15 13:27:53 +00007 Object decode(Reader in, Type type) throws Exception;
8
Stuart McCullochbb014372012-06-07 21:57:32 +00009 void encode(Type t, Object o, Appendable out) throws Exception;
10}