KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > enterprise > tools > verifier > apiscan > classfile > BCELMethod


1 /*
2  * The contents of this file are subject to the terms
3  * of the Common Development and Distribution License
4  * (the License). You may not use this file except in
5  * compliance with the License.
6  *
7  * You can obtain a copy of the license at
8  * https://glassfish.dev.java.net/public/CDDLv1.0.html or
9  * glassfish/bootstrap/legal/CDDLv1.0.txt.
10  * See the License for the specific language governing
11  * permissions and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL
14  * Header Notice in each file and include the License file
15  * at glassfish/bootstrap/legal/CDDLv1.0.txt.
16  * If applicable, add the following below the CDDL Header,
17  * with the fields enclosed by brackets [] replaced by
18  * you own identifying information:
19  * "Portions Copyrighted [year] [name of copyright owner]"
20  *
21  * Copyright 2006 Sun Microsystems, Inc. All rights reserved.
22  */

23
24
25 package com.sun.enterprise.tools.verifier.apiscan.classfile;
26
27 import java.util.Collection JavaDoc;
28 import java.util.logging.Logger JavaDoc;
29 import java.lang.ref.SoftReference JavaDoc;
30
31 /**
32  * @author Sanjeeb.Sahoo@Sun.COM
33  */

34 public class BCELMethod implements Method{
35
36     private SoftReference JavaDoc<ClassFile> owningClass;
37
38     private com.sun.org.apache.bcel.internal.classfile.Method method;
39
40     private static Logger JavaDoc logger = Logger.getLogger("apiscan.classfile"); // NOI18N
41

42     public BCELMethod(ClassFile owningClass,
43                       com.sun.org.apache.bcel.internal.classfile.Method method) {
44         logger.entering("BCELMethod", "BCELMethod", // NOI18N
45
new Object JavaDoc[]{owningClass.getName(), method.getName()});
46         this.owningClass = new SoftReference JavaDoc<ClassFile>(owningClass);
47         this.method = method;
48     }
49
50     public ClassFile getOwningClass() {
51         return owningClass.get();
52     }
53
54     public String JavaDoc getName() {
55         return method.getName();
56     }
57
58     public String JavaDoc getDescriptor() {
59         return method.getSignature();
60     }
61
62     public int getAccess() {
63         return method.getAccessFlags();
64     }
65
66     public String JavaDoc getSignature() {
67         throw new UnsupportedOperationException JavaDoc();
68     }
69
70     public String JavaDoc[] getExceptions() {
71         throw new UnsupportedOperationException JavaDoc();
72     }
73
74     public Collection JavaDoc<MethodRef> getReferencedMethods() {
75         throw new UnsupportedOperationException JavaDoc();
76     }
77
78     public Collection JavaDoc<String JavaDoc> getReferencedClasses() {
79         throw new UnsupportedOperationException JavaDoc();
80     }
81
82     public MethodRef getSelfReference() {
83         throw new UnsupportedOperationException JavaDoc();
84     }
85
86     public boolean isNative() {
87         return method.isNative();
88     }
89 }
90
Popular Tags