summaryrefslogtreecommitdiffstats
path: root/src/net/gcdc/asn1/uper/Encoder.java
blob: 8932d3f1dc3ecaec1a7d26c920e52c9a7252714a (plain) (blame)
1
2
3
4
5
6
7
8
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;
}