blob: 8932d3f1dc3ecaec1a7d26c920e52c9a7252714a (
plain) (
tree)
|
|
package net.gcdc.asn1.uper;
import java.lang.annotation.Annotation;
public interface Encoder {
<T> boolean canEncode(T obj, Annotation[] extraAnnotations);
<T> void encode(BitBuffer bitbuffer, T obj, Annotation[] extraAnnotations) throws Asn1EncodingException;
}
|