Package | Description |
---|---|
net.bytebuddy.dynamic.scaffold |
This package contains helper types and implementations that are responsible for the actual writing of a byte array
representing a Java class.
|
net.bytebuddy.instrumentation |
The instrumentation package contains any logic for intercepting method calls.
|
Modifier and Type | Class and Description |
---|---|
static class |
BridgeMethodResolver.NoOp
A no-op implementation of a
BridgeMethodResolver which is simply
returning the method it is given to resolve. |
static class |
BridgeMethodResolver.Simple
A simple bridge method resolver which applies its resolution by analyzing non-generic types.
|
Modifier and Type | Method and Description |
---|---|
BridgeMethodResolver |
BridgeMethodResolver.NoOp.make(MethodList relevant) |
BridgeMethodResolver |
BridgeMethodResolver.Factory.make(MethodList relevant)
Creates a bridge method resolver for a given list of methods.
|
BridgeMethodResolver |
BridgeMethodResolver.Simple.Factory.make(MethodList relevant) |
Modifier and Type | Field and Description |
---|---|
protected BridgeMethodResolver |
Instrumentation.Target.AbstractBase.bridgeMethodResolver
A bridge method resolver for the given instrumented type.
|
Modifier and Type | Method and Description |
---|---|
MethodDescription |
Instrumentation.Target.MethodLookup.resolve(MethodDescription methodDescription,
Map<String,MethodDescription> invokableMethods,
BridgeMethodResolver bridgeMethodResolver)
Resolves the target method that is actually invoked.
|
Copyright © 2014. All rights reserved.