Package nallar.tickthreading.patcher.mappings

Examples of nallar.tickthreading.patcher.mappings.ClassDescription


      public final String name;
      public final List<PatchDescriptor> patches = new ArrayList<PatchDescriptor>();

      private ClassPatchDescriptor(Element element) {
        attributes = DomUtil.getAttributes(element);
        ClassDescription deobfuscatedClass = new ClassDescription(attributes.get("id"));
        ClassDescription obfuscatedClass = mappings.map(deobfuscatedClass);
        name = obfuscatedClass == null ? deobfuscatedClass.name : obfuscatedClass.name;
        for (Element patchElement : DomUtil.elementList(element.getChildNodes())) {
          PatchDescriptor patchDescriptor = new PatchDescriptor(patchElement);
          patches.add(patchDescriptor);
          List<MethodDescription> methodDescriptionList = MethodDescription.fromListString(deobfuscatedClass.name, patchDescriptor.getMethods());
View Full Code Here

TOP

Related Classes of nallar.tickthreading.patcher.mappings.ClassDescription

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.