Skip to content

Commit

Permalink
Add class level JavaDoc to BytecodeTransformerBuildItem
Browse files Browse the repository at this point in the history
  • Loading branch information
ppalaga committed Jul 9, 2024
1 parent 890d448 commit c9060fe
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,15 @@

import io.quarkus.builder.item.MultiBuildItem;

/**
* Transform a class using ASM {@link ClassVisitor}. Note that the transformation is performed after assembling the
* index and thus the changes won't be visible to any processor steps relying on the index.
* <p>
* You may consider using {@code io.quarkus.arc.deployment.AnnotationsTransformerBuildItem} if your transformation
* should be visible for Arc. See also
* <a href="https://quarkus.io/version/main/guides/cdi-integration#annotations_transformer_build_item">I Need To
* Transform Annotation Metadata</a> section of Quarkus CDI integration guide.
*/
public final class BytecodeTransformerBuildItem extends MultiBuildItem {

final String classToTransform;
Expand Down

0 comments on commit c9060fe

Please sign in to comment.