summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/uic/barcode/asn1/uper/Encoder.java
blob: 1b3688f39c546a81f5016c0cb7a44bcd2a92314d (plain) (blame)
1
2
3
4
5
6
7
8
package org.uic.barcode.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;
}