ProGuard

Uses of Class
proguard.classfile.ExceptionInfo

Packages that use ExceptionInfo
proguard.classfile This package contains classes to represent various elements of class files. 
proguard.classfile.editor This package contains visitors to edit byte code. 
proguard.classfile.visitor This package contains interfaces and classes for processing class files from the proguard.classfile package using the visitor pattern
proguard.obfuscate This package contains classes to perform obfuscation of class files. 
proguard.optimize.evaluation This package contains visitors that perform partial evaluation and subsequent optimizations on byte code. 
proguard.optimize.peephole This package contains visitors that perform various peephole optimizations. 
proguard.shrink This package contains classes to perform shrinking of class files. 
 

Uses of ExceptionInfo in proguard.classfile
 

Fields in proguard.classfile declared as ExceptionInfo
 ExceptionInfo[] CodeAttrInfo.exceptionTable
           
 

Methods in proguard.classfile that return ExceptionInfo
static ExceptionInfo ExceptionInfo.create(DataInput din)
           
 

Uses of ExceptionInfo in proguard.classfile.editor
 

Methods in proguard.classfile.editor with parameters of type ExceptionInfo
 void CodeAttrInfoEditor.visitExceptionInfo(ClassFile classFile, MethodInfo methodInfo, CodeAttrInfo codeAttrInfo, ExceptionInfo exceptionInfo)
           
 void ConstantPoolRemapper.visitExceptionInfo(ClassFile classFile, MethodInfo methodInfo, CodeAttrInfo codeAttrInfo, ExceptionInfo exceptionInfo)
           
 

Uses of ExceptionInfo in proguard.classfile.visitor
 

Methods in proguard.classfile.visitor with parameters of type ExceptionInfo
 void ClassFilePrinter.visitExceptionInfo(ClassFile classFile, MethodInfo methodInfo, CodeAttrInfo codeAttrInfo, ExceptionInfo exceptionInfo)
           
 void ClassFileCleaner.visitExceptionInfo(ClassFile classFile, MethodInfo methodInfo, CodeAttrInfo codeAttrInfo, ExceptionInfo exceptionInfo)
           
 void ExceptionInfoVisitor.visitExceptionInfo(ClassFile classFile, MethodInfo methodInfo, CodeAttrInfo codeAttrInfo, ExceptionInfo exceptionInfo)
           
 

Uses of ExceptionInfo in proguard.obfuscate
 

Methods in proguard.obfuscate with parameters of type ExceptionInfo
 void NameAndTypeShrinker.visitExceptionInfo(ClassFile classFile, MethodInfo methodInfo, CodeAttrInfo codeAttrInfo, ExceptionInfo exceptionInfo)
           
 

Uses of ExceptionInfo in proguard.optimize.evaluation
 

Methods in proguard.optimize.evaluation with parameters of type ExceptionInfo
 void PartialEvaluator.visitExceptionInfo(ClassFile classFile, MethodInfo methodInfo, CodeAttrInfo codeAttrInfo, ExceptionInfo exceptionInfo)
           
 

Uses of ExceptionInfo in proguard.optimize.peephole
 

Methods in proguard.optimize.peephole with parameters of type ExceptionInfo
 void BranchTargetFinder.visitExceptionInfo(ClassFile classFile, MethodInfo methodInfo, CodeAttrInfo codeAttrInfo, ExceptionInfo exceptionInfo)
           
 

Uses of ExceptionInfo in proguard.shrink
 

Methods in proguard.shrink with parameters of type ExceptionInfo
 void UsageMarker.visitExceptionInfo(ClassFile classFile, MethodInfo methodInfo, CodeAttrInfo codeAttrInfo, ExceptionInfo exceptionInfo)
           
 


ProGuard