org.siebengeisslein.pclass
Interface PMethod

All Known Implementing Classes:
ExternalConstructor, ExternalPMethod, PanelBindingGetter, PanelBindingSetter, PInternalConstructor, PInternalMethod

public interface PMethod


Method Summary
 int getAccess()
           
 java.lang.String getDescriptor()
           
 java.lang.String getName()
           
 java.util.List<PType> getParameters()
           
 PType getReturnType()
           
 boolean isAbstract()
           
 boolean isFinal()
           
 boolean isGetter()
           
 boolean isPublic()
           
 boolean isStatic()
           
 void visitInvocation(org.objectweb.asm.MethodVisitor mv, java.lang.String targetClass, boolean special)
           
 

Method Detail

getDescriptor

java.lang.String getDescriptor()

getName

java.lang.String getName()

getParameters

java.util.List<PType> getParameters()

getAccess

int getAccess()

getReturnType

PType getReturnType()

isGetter

boolean isGetter()

visitInvocation

void visitInvocation(org.objectweb.asm.MethodVisitor mv,
                     java.lang.String targetClass,
                     boolean special)

isAbstract

boolean isAbstract()

isStatic

boolean isStatic()

isFinal

boolean isFinal()

isPublic

boolean isPublic()