Package cuchaz.enigma.mapping

Examples of cuchaz.enigma.mapping.Entry


    for( Token token : index.referenceTokens() )
    {
      EntryReference<Entry,Entry> deobfReference = index.getDeobfReference( token );
     
      // get the obfuscated entry
      Entry obfEntry = obfuscateEntry( deobfReference.entry );
     
      // try to resolve the class
      ClassEntry resolvedObfClassEntry = m_jarIndex.resolveEntryClass( obfEntry );
      if( resolvedObfClassEntry != null && !resolvedObfClassEntry.equals( obfEntry.getClassEntry() ) )
      {
        // change the class of the entry
        obfEntry = obfEntry.cloneToNewClass( resolvedObfClassEntry );
       
        // save the new deobfuscated reference
        deobfReference.entry = deobfuscateEntry( obfEntry );
        index.replaceDeobfReference( token, deobfReference );
      }
View Full Code Here

TOP

Related Classes of cuchaz.enigma.mapping.Entry

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.