FileDocCategorySizeDatePackage
BCELMethod.javaAPI DocGlassfish v2 API3664Fri May 04 22:33:24 BST 2007com.sun.enterprise.tools.verifier.apiscan.classfile

BCELMethod

public class BCELMethod extends Object implements Method
author
Sanjeeb.Sahoo@Sun.COM

Fields Summary
private SoftReference
owningClass
private Method
method
private static Logger
logger
Constructors Summary
public BCELMethod(ClassFile owningClass, Method method)

 // NOI18N

      
                        
        logger.entering("BCELMethod", "BCELMethod", // NOI18N
                new Object[]{owningClass.getName(), method.getName()});
        this.owningClass = new SoftReference<ClassFile>(owningClass);
        this.method = method;
    
Methods Summary
public intgetAccess()

        return method.getAccessFlags();
    
public java.lang.StringgetDescriptor()

        return method.getSignature();
    
public java.lang.String[]getExceptions()

        throw new UnsupportedOperationException();
    
public java.lang.StringgetName()

        return method.getName();
    
public ClassFilegetOwningClass()

        return owningClass.get();
    
public java.util.CollectiongetReferencedClasses()

        throw new UnsupportedOperationException();
    
public java.util.CollectiongetReferencedMethods()

        throw new UnsupportedOperationException();
    
public MethodRefgetSelfReference()

        throw new UnsupportedOperationException();
    
public java.lang.StringgetSignature()

        throw new UnsupportedOperationException();
    
public booleanisNative()

        return method.isNative();