Access | Constructor and Description |
---|---|
public | SimpleRemapper(final Map<String, String>
a map specifying a remapping as follows:
mapping)
Constructs a new |
public | SimpleRemapper(final String
the key corresponding to a method, field or internal name (see oldName, final String SimpleRemapper(Map) for the format of these keys).the new method, field or internal name (see newName)org.objectweb.asm.Type#getInternalName() ).Constructs a new |
Modifier and Type | Method and Description |
---|---|
public String | map(final String
the internal name of a class (see key)Type#getInternalName() ).Overrides org. |
public String | mapAnnotationAttributeName(final String
the descriptor of the annotation class. descriptor, final String the name of the annotation attribute. name)Overrides org. |
public String | mapFieldName(final String
the internal name of the owner class of the field (see owner, final String Type#getInternalName() ).the name of the field. name, final String the descriptor of the field. descriptor)
Maps a field name to its new name.
|
public String | mapInvokeDynamicMethodName(final String
the name of the method. name, final String the descriptor of the method. descriptor)Overrides org. |
public String | mapMethodName(final String
the internal name of the owner class of the method (see owner, final String Type#getInternalName() ).the name of the method. name, final String the descriptor of the method. descriptor)
Maps a method name to its new name.
|
mapping | back to summary |
---|---|
private final Map<String, String> mapping |
SimpleRemapper | back to summary |
---|---|
public SimpleRemapper(final Map<String, String> mapping) Constructs a new
|
SimpleRemapper | back to summary |
---|---|
public SimpleRemapper(final String oldName, final String newName) Constructs a new
|
map | back to summary |
---|---|
public String map(final String key) Overrides org. Doc from org. Maps the internal name of a class to its new name. The default implementation of this method returns the given name, unchanged. Subclasses can override.
|
mapAnnotationAttributeName | back to summary |
---|---|
public String mapAnnotationAttributeName(final String descriptor, final String name) Overrides org. Doc from org. Maps an annotation attribute name. The default implementation of this method returns the given name, unchanged. Subclasses can override. |
mapFieldName | back to summary |
---|---|
public String mapFieldName(final String owner, final String name, final String descriptor) Overrides org. Doc from org. Maps a field name to its new name. The default implementation of this method returns the given name, unchanged. Subclasses can override. |
mapInvokeDynamicMethodName | back to summary |
---|---|
public String mapInvokeDynamicMethodName(final String name, final String descriptor) Overrides org. Doc from org. Maps an invokedynamic or a constant dynamic method name to its new name. The default implementation of this method returns the given name, unchanged. Subclasses can override. |
mapMethodName | back to summary |
---|---|
public String mapMethodName(final String owner, final String name, final String descriptor) Overrides org. Doc from org. Maps a method name to its new name. The default implementation of this method returns the given name, unchanged. Subclasses can override. |