proguard.classfile.attribute.preverification.visitor
Interface StackMapFrameVisitor

All Known Implementing Classes:
ClassCleaner, ClassPrinter, CodeAttributeComposer, CodeAttributeEditor, ConstantPoolRemapper, ProgramClassReader, ShortestUsageMarker

public interface StackMapFrameVisitor

This interface specifies the methods for a visitor of StackMapFrame objects.


Method Summary
 void visitFullFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, FullFrame fullFrame)
           
 void visitLessZeroFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, LessZeroFrame lessZeroFrame)
           
 void visitMoreZeroFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, MoreZeroFrame moreZeroFrame)
           
 void visitSameOneFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SameOneFrame sameOneFrame)
           
 void visitSameZeroFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SameZeroFrame sameZeroFrame)
           
 

Method Detail

visitSameZeroFrame

void visitSameZeroFrame(Clazz clazz,
                        Method method,
                        CodeAttribute codeAttribute,
                        int offset,
                        SameZeroFrame sameZeroFrame)

visitSameOneFrame

void visitSameOneFrame(Clazz clazz,
                       Method method,
                       CodeAttribute codeAttribute,
                       int offset,
                       SameOneFrame sameOneFrame)

visitLessZeroFrame

void visitLessZeroFrame(Clazz clazz,
                        Method method,
                        CodeAttribute codeAttribute,
                        int offset,
                        LessZeroFrame lessZeroFrame)

visitMoreZeroFrame

void visitMoreZeroFrame(Clazz clazz,
                        Method method,
                        CodeAttribute codeAttribute,
                        int offset,
                        MoreZeroFrame moreZeroFrame)

visitFullFrame

void visitFullFrame(Clazz clazz,
                    Method method,
                    CodeAttribute codeAttribute,
                    int offset,
                    FullFrame fullFrame)