Package net.bytebuddy.build
Class RenamingPlugin.RenamingRemapper
- java.lang.Object
-
- org.objectweb.asm.commons.Remapper
-
- net.bytebuddy.build.RenamingPlugin.RenamingRemapper
-
- Enclosing class:
- RenamingPlugin
protected static class RenamingPlugin.RenamingRemapper extends org.objectweb.asm.commons.RemapperAn ASMRemapperto apply renamings.
-
-
Field Summary
Fields Modifier and Type Field Description private java.util.Map<java.lang.String,java.lang.String>cacheA cache of previously applied renamings.private RenamingPlugin.RenamingrenamingThe renaming to apply.
-
Constructor Summary
Constructors Modifier Constructor Description protectedRenamingRemapper(RenamingPlugin.Renaming renaming)Creates a new renaming remapper.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Stringmap(java.lang.String internalName)-
Methods inherited from class org.objectweb.asm.commons.Remapper
createRemappingSignatureAdapter, createSignatureRemapper, mapAnnotationAttributeName, mapBasicInvokeDynamicMethodName, mapDesc, mapFieldName, mapInnerClassName, mapInvokeDynamicMethodName, mapInvokeDynamicMethodName, mapMethodDesc, mapMethodName, mapModuleName, mapPackageName, mapRecordComponentName, mapSignature, mapType, mapTypes, mapValue, mapWellKnownInvokeDynamicMethodName
-
-
-
-
Field Detail
-
renaming
private final RenamingPlugin.Renaming renaming
The renaming to apply.
-
cache
private final java.util.Map<java.lang.String,java.lang.String> cache
A cache of previously applied renamings.
-
-
Constructor Detail
-
RenamingRemapper
protected RenamingRemapper(RenamingPlugin.Renaming renaming)
Creates a new renaming remapper.- Parameters:
renaming- The renaming to apply.
-
-