Package org.spongepowered.asm.util
Interface ObfuscationUtil.IClassRemapper
-
- Enclosing class:
- ObfuscationUtil
public static interface ObfuscationUtil.IClassRemapperInterface for remapper proxies
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Stringmap(java.lang.String typeName)Map type name to the new name.java.lang.Stringunmap(java.lang.String typeName)Convert a mapped type name back to the original obfuscated name
-
-
-
Method Detail
-
map
java.lang.String map(java.lang.String typeName)
Map type name to the new name. Subclasses can override.- Parameters:
typeName- Class name to convert- Returns:
- new name for the class
-
unmap
java.lang.String unmap(java.lang.String typeName)
Convert a mapped type name back to the original obfuscated name- Parameters:
typeName- Class name to convert- Returns:
- old name for the class
-
-