KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > lateralnz > panther > deploy > MethodDescriptor


1 /* ====================================================================
2  * The LateralNZ Software License, Version 1.0
3  *
4  * Copyright (c) 2003 LateralNZ. All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  *
10  * 1. Redistributions of source code must retain the above copyright
11  * notice, this list of conditions and the following disclaimer.
12  *
13  * 2. Redistributions in binary form must reproduce the above copyright
14  * notice, this list of conditions and the following disclaimer in
15  * the documentation and/or other materials provided with the
16  * distribution.
17  *
18  * 3. The end-user documentation included with the redistribution,
19  * if any, must include the following acknowledgment:
20  * "This product includes software developed by
21  * LateralNZ (http://www.lateralnz.org/) and other third parties."
22  * Alternately, this acknowledgment may appear in the software itself,
23  * if and wherever such third-party acknowledgments normally appear.
24  *
25  * 4. The names "LateralNZ" must not be used to endorse or promote
26  * products derived from this software without prior written
27  * permission. For written permission, please
28  * contact oss@lateralnz.org.
29  *
30  * 5. Products derived from this software may not be called "Panther",
31  * or "Lateral" or "LateralNZ", nor may "PANTHER" or "LATERAL" or
32  * "LATERALNZ" appear in their name, without prior written
33  * permission of LateralNZ.
34  *
35  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
36  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
37  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
38  * DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
39  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
40  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
41  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
42  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
43  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
44  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
45  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
46  * SUCH DAMAGE.
47  * ====================================================================
48  *
49  * This software consists of voluntary contributions made by many
50  * individuals on behalf of LateralNZ. For more
51  * information on Lateral, please see http://www.lateralnz.com/ or
52  * http://www.lateralnz.org
53  *
54  */

55 package org.lateralnz.panther.deploy;
56
57 import java.lang.reflect.Method JavaDoc;
58
59 import org.lateralnz.common.util.ObjectUtils;
60
61 /**
62  * a data holder for method information
63  *
64  * @author J R Briggs
65  */

66 public class MethodDescriptor {
67   private String JavaDoc name;
68   private String JavaDoc[] exceptionTypes;
69   private String JavaDoc[] parameterTypes;
70   private String JavaDoc returnType;
71   private boolean transaction = false;
72   private String JavaDoc transactionType;
73   
74   public MethodDescriptor(Method JavaDoc method, boolean transaction, String JavaDoc transactionType) {
75     this.name = method.getName();
76     this.transaction = transaction;
77     this.transactionType = transactionType;
78     this.exceptionTypes = new String JavaDoc[method.getExceptionTypes().length];
79     for (int i = 0; i < exceptionTypes.length; i++) {
80       this.exceptionTypes[i] = method.getExceptionTypes()[i].getName();
81     }
82     this.parameterTypes = new String JavaDoc[method.getParameterTypes().length];
83     for (int i = 0; i < parameterTypes.length; i++) {
84       this.parameterTypes[i] = ObjectUtils.getParameterType(method.getParameterTypes()[i]);
85     }
86     this.returnType = ObjectUtils.getParameterType(method.getReturnType());
87   }
88
89   public String JavaDoc getName() {
90     return name;
91   }
92   
93   public String JavaDoc[] getExceptionTypes() {
94     return exceptionTypes;
95   }
96   
97   public String JavaDoc[] getParameterTypes() {
98     return parameterTypes;
99   }
100   
101   public String JavaDoc getReturnType() {
102     return returnType;
103   }
104   
105   public boolean getTransaction() {
106     return transaction;
107   }
108   
109   public String JavaDoc getTransactionType() {
110     return transactionType;
111   }
112 }
Popular Tags