Top Description Fields Constructors Methods
org.objectweb.asm.commons

public Class SimpleRemapper

extends Remapper
Class Inheritance
Imports
java.util.Collections, .Map

A Remapper using a Map to define its mapping.
Author
Eugene Kuleshov

Field Summary

Modifier and TypeField and Description
private final Map<String, String>

Constructor Summary

AccessConstructor and Description
public
SimpleRemapper(final Map<String, String>
a map specifying a remapping as follows:
  • for method names, the key is the owner, name and descriptor of the method (in the form <owner>.<name><descriptor>), and the value is the new method name.
  • for invokedynamic method names, the key is the name and descriptor of the method (in the form .<name><descriptor>), and the value is the new method name.
  • for field and attribute names, the key is the owner and name of the field or attribute (in the form <owner>.<name>), and the value is the new field name.
  • for internal names, the key is the old internal name, and the value is the new internal name (see org.objectweb.asm.Type#getInternalName()).
mapping
)

Constructs a new SimpleRemapper with the given mapping.

public
SimpleRemapper(final String
the key corresponding to a method, field or internal name (see SimpleRemapper(Map) for the format of these keys).
oldName
,
final String
the new method, field or internal name (see org.objectweb.asm.Type#getInternalName()).
newName
)

Constructs a new SimpleRemapper with the given mapping.

Method Summary

Modifier and TypeMethod and Description
public String
map(final String
the internal name of a class (see Type#getInternalName()).
key
)

Overrides org.objectweb.asm.commons.Remapper.map.

Maps the internal name of a class to its new name.
public String
mapAnnotationAttributeName(final String
the descriptor of the annotation class.
descriptor
,
final String
the name of the annotation attribute.
name
)

Overrides org.objectweb.asm.commons.Remapper.mapAnnotationAttributeName.

Maps an annotation attribute name.
public String
mapFieldName(final String
the internal name of the owner class of the field (see Type#getInternalName()).
owner
,
final String
the name of the field.
name
,
final String
the descriptor of the field.
descriptor
)

Overrides org.objectweb.asm.commons.Remapper.mapFieldName.

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.objectweb.asm.commons.Remapper.mapInvokeDynamicMethodName.

Maps an invokedynamic or a constant dynamic method name to its new name.
public String
mapMethodName(final String
the internal name of the owner class of the method (see Type#getInternalName()).
owner
,
final String
the name of the method.
name
,
final String
the descriptor of the method.
descriptor
)

Overrides org.objectweb.asm.commons.Remapper.mapMethodName.

Maps a method name to its new name.
Inherited from org.objectweb.asm.commons.Remapper:
createRemappingSignatureAdaptercreateSignatureRemappermapDescmapInnerClassNamemapMethodDescmapModuleNamemapPackageNamemapRecordComponentNamemapSignaturemapTypemapTypesmapValue

Field Detail

mappingback to summary
private final Map<String, String> mapping

Constructor Detail

SimpleRemapperback to summary
public SimpleRemapper(final Map<String, String> mapping)

Constructs a new SimpleRemapper with the given mapping.

Parameters
mapping:Map<String, String>

a map specifying a remapping as follows:

  • for method names, the key is the owner, name and descriptor of the method (in the form <owner>.<name><descriptor>), and the value is the new method name.
  • for invokedynamic method names, the key is the name and descriptor of the method (in the form .<name><descriptor>), and the value is the new method name.
  • for field and attribute names, the key is the owner and name of the field or attribute (in the form <owner>.<name>), and the value is the new field name.
  • for internal names, the key is the old internal name, and the value is the new internal name (see org.objectweb.asm.Type#getInternalName()).
SimpleRemapperback to summary
public SimpleRemapper(final String oldName, final String newName)

Constructs a new SimpleRemapper with the given mapping.

Parameters
oldName:String

the key corresponding to a method, field or internal name (see SimpleRemapper(Map) for the format of these keys).

newName:String

the new method, field or internal name (see org.objectweb.asm.Type#getInternalName()).

Method Detail

mapback to summary
public String map(final String key)

Overrides org.objectweb.asm.commons.Remapper.map.

Doc from org.objectweb.asm.commons.Remapper.map.

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.

Parameters
key:String

the internal name of a class (see Type#getInternalName()).

Returns:String

the new internal name (see Type#getInternalName()).

Annotations
@Override
mapAnnotationAttributeNameback to summary
public String mapAnnotationAttributeName(final String descriptor, final String name)

Overrides org.objectweb.asm.commons.Remapper.mapAnnotationAttributeName.

Doc from org.objectweb.asm.commons.Remapper.mapAnnotationAttributeName.

Maps an annotation attribute name. The default implementation of this method returns the given name, unchanged. Subclasses can override.

Parameters
descriptor:String

the descriptor of the annotation class.

name:String

the name of the annotation attribute.

Returns:String

the new name of the annotation attribute.

Annotations
@Override
mapFieldNameback to summary
public String mapFieldName(final String owner, final String name, final String descriptor)

Overrides org.objectweb.asm.commons.Remapper.mapFieldName.

Doc from org.objectweb.asm.commons.Remapper.mapFieldName.

Maps a field name to its new name. The default implementation of this method returns the given name, unchanged. Subclasses can override.

Parameters
owner:String

the internal name of the owner class of the field (see Type#getInternalName()).

name:String

the name of the field.

descriptor:String

the descriptor of the field.

Returns:String

the new name of the field.

Annotations
@Override
mapInvokeDynamicMethodNameback to summary
public String mapInvokeDynamicMethodName(final String name, final String descriptor)

Overrides org.objectweb.asm.commons.Remapper.mapInvokeDynamicMethodName.

Doc from org.objectweb.asm.commons.Remapper.mapInvokeDynamicMethodName.

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.

Parameters
name:String

the name of the method.

descriptor:String

the descriptor of the method.

Returns:String

the new name of the method.

Annotations
@Override
mapMethodNameback to summary
public String mapMethodName(final String owner, final String name, final String descriptor)

Overrides org.objectweb.asm.commons.Remapper.mapMethodName.

Doc from org.objectweb.asm.commons.Remapper.mapMethodName.

Maps a method name to its new name. The default implementation of this method returns the given name, unchanged. Subclasses can override.

Parameters
owner:String

the internal name of the owner class of the method (see Type#getInternalName()).

name:String

the name of the method.

descriptor:String

the descriptor of the method.

Returns:String

the new name of the method.

Annotations
@Override