use of com.android.dex.Annotation in project buck by facebook.
the class IndexMap method adjust.
public Annotation adjust(Annotation annotation) {
ByteArrayAnnotatedOutput out = new ByteArrayAnnotatedOutput(32);
new EncodedValueTransformer(out).transformAnnotation(annotation.getReader());
return new Annotation(target, annotation.getVisibility(), new EncodedValue(out.toByteArray()));
}
use of com.android.dex.Annotation in project J2ME-Loader by nikita36078.
the class IndexMap method adjust.
public Annotation adjust(Annotation annotation) {
ByteArrayAnnotatedOutput out = new ByteArrayAnnotatedOutput(32);
new EncodedValueTransformer(out).transformAnnotation(annotation.getReader());
return new Annotation(target, annotation.getVisibility(), new EncodedValue(out.toByteArray()));
}
Aggregations