contrafo added

git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@865 379699f6-c40d-0410-875b-85095c16579e
stable
jochen 25 years ago
parent 82050a13a1
commit 79c6d700de
  1. 9
      jode/jode/Decompiler.java

@ -40,15 +40,16 @@ public class Decompiler {
public static final int OPTION_ONETIME = 0x0040;
public static final int OPTION_IMMEDIATE = 0x0080;
public static final int OPTION_VERIFY = 0x0100;
public static final int OPTION_CONTRAFO = 0x0200;
public static int options =
OPTION_LVT | OPTION_INNER | OPTION_ANON |
OPTION_DECRYPT | OPTION_VERIFY;
OPTION_DECRYPT | OPTION_VERIFY | OPTION_CONTRAFO;
public static final String[] optionNames = {
"lvt", "inners", "anonymous", "push",
"lvt", "inner", "anonymous", "push",
"pretty", "decrypt", "onetime", "immediate",
"verify"
"verify", "contrafo"
};
public static int outputStyle = SUN_STYLE;
@ -79,6 +80,8 @@ public class Decompiler {
"[don't] decompile inner classes.");
err.println("\t--[no]anonymous "+
"[don't] decompile anonymous classes.");
err.println("\t--[no]contrafo "+
"[don't] transform constructors of inner classes.");
err.println("\t--[no]lvt "+
"[don't] use the local variable table.");
err.println("\t--[no]pretty "+

Loading…
Cancel
Save