package org.uic.barcode.asn1.uper; import java.lang.annotation.Annotation; public interface Encoder { boolean canEncode(T obj, Annotation[] extraAnnotations); void encode(BitBuffer bitbuffer, T obj, Annotation[] extraAnnotations) throws Asn1EncodingException; }