blob: 1b3688f39c546a81f5016c0cb7a44bcd2a92314d (
plain) (
tree)
|
|
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;
}
|