Uses of Interface
net.bytebuddy.build.Plugin.Engine.Listener
-
Packages that use Plugin.Engine.Listener Package Description net.bytebuddy.build A package for types that allow for applying Byte Buddy transformation during a build process.net.bytebuddy.build.maven A package containing classes for applying Byte Buddy transformers within a Maven build. -
-
Uses of Plugin.Engine.Listener in net.bytebuddy.build
Classes in net.bytebuddy.build that implement Plugin.Engine.Listener Modifier and Type Class Description static class
Plugin.Engine.Listener.Adapter
An adapter that implements all methods non-operational.static class
Plugin.Engine.Listener.Compound
A compound listener.static class
Plugin.Engine.Listener.ForErrorHandler
A listener decorator that forwards events to an error handler if they are applicable.static class
Plugin.Engine.Listener.NoOp
A non-operational listener.static class
Plugin.Engine.Listener.StreamWriting
A listener that forwards significant events of a plugin engine application to aPrintStream
.static class
Plugin.Engine.Listener.WithErrorsOnly
A decorator for another listener to only print error events.static class
Plugin.Engine.Listener.WithTransformationsOnly
A decorator for another listener to only print transformation and error events.Fields in net.bytebuddy.build declared as Plugin.Engine.Listener Modifier and Type Field Description private Plugin.Engine.Listener
Plugin.Engine.Listener.WithErrorsOnly. delegate
The delegate to forward events to.private Plugin.Engine.Listener
Plugin.Engine.Listener.WithTransformationsOnly. delegate
The delegate to forward events to.private Plugin.Engine.Listener
Plugin.Engine.Default. listener
The listener to use.private Plugin.Engine.Listener
Plugin.Engine.Default.Preprocessor. listener
The listener to notify.Fields in net.bytebuddy.build with type parameters of type Plugin.Engine.Listener Modifier and Type Field Description private java.util.List<Plugin.Engine.Listener>
Plugin.Engine.Listener.Compound. listeners
A list of listeners that are represented by this compound instance.Methods in net.bytebuddy.build that return Plugin.Engine.Listener Modifier and Type Method Description Plugin.Engine.Listener
Plugin.Engine.Listener.StreamWriting. withErrorsOnly()
Returns a new listener that only prints error events.Plugin.Engine.Listener
Plugin.Engine.Listener.StreamWriting. withTransformationsOnly()
Returns a new listener that only prints transformation and error events.Methods in net.bytebuddy.build with parameters of type Plugin.Engine.Listener Modifier and Type Method Description Plugin.Engine
Plugin.Engine.Default. with(Plugin.Engine.Listener listener)
Appends the supplied listener to this engine.Plugin.Engine
Plugin.Engine. with(Plugin.Engine.Listener listener)
Appends the supplied listener to this engine.Constructors in net.bytebuddy.build with parameters of type Plugin.Engine.Listener Constructor Description Compound(Plugin.Engine.Listener... listener)
Creates a new compound listener.Default(ByteBuddy byteBuddy, Plugin.Engine.TypeStrategy typeStrategy, Plugin.Engine.PoolStrategy poolStrategy, ClassFileLocator classFileLocator, Plugin.Engine.Listener listener, Plugin.Engine.ErrorHandler errorHandler, Plugin.Engine.Dispatcher.Factory dispatcherFactory, ElementMatcher.Junction<? super TypeDescription> ignoredTypeMatcher)
Creates a new default plugin engine.Preprocessor(Plugin.Engine.Source.Element element, java.lang.String typeName, ClassFileLocator classFileLocator, TypePool typePool, Plugin.Engine.Listener listener, java.util.List<Plugin> plugins, java.util.List<Plugin.WithPreprocessor> preprocessors)
Creates a new preprocessor.WithErrorsOnly(Plugin.Engine.Listener delegate)
Creates a new listener decorator that filter any event that is not related to errors.WithTransformationsOnly(Plugin.Engine.Listener delegate)
Creates a new listener decorator that filter any event that is not related to transformation or errors.Constructor parameters in net.bytebuddy.build with type arguments of type Plugin.Engine.Listener Constructor Description Compound(java.util.List<? extends Plugin.Engine.Listener> listeners)
Creates a new compound listener. -
Uses of Plugin.Engine.Listener in net.bytebuddy.build.maven
Classes in net.bytebuddy.build.maven that implement Plugin.Engine.Listener Modifier and Type Class Description protected static class
ByteBuddyMojo.TransformationLogger
APlugin.Engine.Listener
that logs several relevant events during the build.
-