blob: 6de09cf2109f50941c9879c61316d4e26656d750 [file] [log] [blame]
Stuart McCullochf3173222012-06-07 21:57:32 +00001package aQute.lib.codec;
2
3import java.io.*;
4import java.lang.reflect.*;
5
6public interface Codec {
7 Object decode(Reader in, Type type) throws Exception;
8 void encode(Type t, Object o, Appendable out) throws Exception;
9}