org.testifyproject.bytebuddy.build.Plugin Maven / Gradle / Ivy
The newest version!
package org.testifyproject.bytebuddy.build;
import org.testifyproject.bytebuddy.description.type.TypeDescription;
import org.testifyproject.bytebuddy.dynamic.DynamicType;
import org.testifyproject.bytebuddy.matcher.ElementMatcher;
/**
* A plugin that allows for the application of Byte Buddy transformations during a build process. This plugin's
* transformation is applied to any type matching this plugin's type matcher. Plugin types must be public,
* non-abstract and must declare a public default constructor to work.
*/
public interface Plugin extends ElementMatcher {
/**
* Applies this plugin.
*
* @param builder The builder to use as a basis for the applied transformation.
* @param typeDescription The type being transformed.
* @return The supplied builder with additional transformations registered.
*/
DynamicType.Builder> apply(DynamicType.Builder> builder, TypeDescription typeDescription);
}