Deprecated Methods |
de.fub.bytecode.generic.MethodGen.addExceptionHandler(InstructionHandle, InstructionHandle, InstructionHandle, String)
Use above method |
de.fub.bytecode.generic.Instruction.consumeStack()
Use consumeStack(cp) instead which always gives correct results |
de.fub.bytecode.generic.MethodGen.getArgName(int)
because of its ugly name |
de.fub.bytecode.generic.MethodGen.getArgNames()
because of its ugly name |
de.fub.bytecode.generic.MethodGen.getArgType(int)
because of its ugly name |
de.fub.bytecode.generic.MethodGen.getArgTypes()
because of its ugly name |
de.fub.bytecode.generic.LineNumberGen.getLineNumber(ConstantPoolGen)
cp not needed |
de.fub.bytecode.generic.MethodGen.getMethodName()
Use getName() |
de.fub.bytecode.generic.MethodGen.getMethodSignature()
Use getSignature() |
de.fub.bytecode.generic.INVOKEINTERFACE.getNoArguments()
Use getCount(). |
de.fub.bytecode.generic.LocalVariableGen.getSlot()
Use getIndex() |
de.fub.bytecode.generic.Instruction.getTag()
in favor of getOpcode() |
de.fub.bytecode.generic.Instruction.produceStack()
Use produceStack(cp) instead which always gives correct results |
de.fub.bytecode.generic.MethodGen.setArgName(int, String)
because of its ugly name |
de.fub.bytecode.generic.MethodGen.setArgNames(String[])
because of its ugly name |
de.fub.bytecode.generic.MethodGen.setArgType(int, Type)
because of its ugly name |
de.fub.bytecode.generic.MethodGen.setArgTypes(Type[])
because of its ugly name |
de.fub.bytecode.generic.MethodGen.setMethodName(String)
Use setName() |
de.fub.bytecode.generic.LocalVariableGen.setSlot(int)
Use setIndex() |
de.fub.bytecode.classfile.Utility.typeToSignature(String)
replaced by getSignature |