Examples of InnerClassWriter


Examples of cuchaz.enigma.bytecode.InnerClassWriter

    // we moved a lot of classes out of the default package into the none package
    // make sure all the class references are consistent
    ClassRenamer.moveAllClassesOutOfDefaultPackage( c, Constants.NonePackage );
   
    // reconstruct inner classes
    new InnerClassWriter( m_jarIndex ).write( c );
   
    // re-get the javassist handle since we changed class names
    ClassEntry obfClassEntry = new ClassEntry( Descriptor.toJvmName( c.getName() ) );
    String javaClassReconstructedName = Descriptor.toJavaName( obfClassEntry.getName() );
    ClassPool classPool = new ClassPool();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.