Package cuchaz.enigma.mapping

Examples of cuchaz.enigma.mapping.ClassMapping


  {
    // is this class deobfuscated?
    // we need to tell the decompiler the deobfuscated name so it doesn't get freaked out
    // the decompiler only sees the deobfuscated class, so we need to load it by the deobfuscated name
    String lookupClassName = obfClassName;
    ClassMapping classMapping = m_mappings.getClassByObf( obfClassName );
    if( classMapping != null && classMapping.getDeobfName() != null )
    {
      lookupClassName = classMapping.getDeobfName();
    }
   
    // is this class even in the jar?
    if( !m_jarIndex.containsObfClass( new ClassEntry( obfClassName ) ) )
    {
View Full Code Here

TOP

Related Classes of cuchaz.enigma.mapping.ClassMapping

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.