Get Annotation Parameter : Annotation « Reflection « Java

Home
Java
1.2D Graphics GUI
2.3D
3.Advanced Graphics
4.Ant
5.Apache Common
6.Chart
7.Class
8.Collections Data Structure
9.Data Type
10.Database SQL JDBC
11.Design Pattern
12.Development Class
13.EJB3
14.Email
15.Event
16.File Input Output
17.Game
18.Generics
19.GWT
20.Hibernate
21.I18N
22.J2EE
23.J2ME
24.JDK 6
25.JNDI LDAP
26.JPA
27.JSP
28.JSTL
29.Language Basics
30.Network Protocol
31.PDF RTF
32.Reflection
33.Regular Expressions
34.Scripting
35.Security
36.Servlets
37.Spring
38.Swing Components
39.Swing JFC
40.SWT JFace Eclipse
41.Threads
42.Tiny Application
43.Velocity
44.Web Services SOA
45.XML
Java Tutorial
Java Book
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
SCJP
Java » Reflection » AnnotationScreenshots 
Get Annotation Parameter
  
// $Id: ReflectionHelper.java 16271 2009-04-07 20:20:12Z hardy.ferentschik $
/*
* JBoss, Home of Professional Open Source
* Copyright 2008, Red Hat Middleware LLC, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,  
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/


import java.beans.Introspector;
import java.lang.annotation.Annotation;
import java.lang.reflect.AccessibleObject;
import java.lang.reflect.Field;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Member;
import java.lang.reflect.Method;
import java.lang.reflect.Modifier;
import java.lang.reflect.ParameterizedType;
import java.lang.reflect.Type;
import java.lang.reflect.WildcardType;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Iterator;
import java.util.List;
import java.util.Map;


/**
 * Some reflection utility methods.
 *
 @author Hardy Ferentschik
 */
public class ReflectionHelper {


  @SuppressWarnings("unchecked")
  public static <T> T getAnnotationParameter(Annotation annotation, String parameterName, Class<T> type) {
    try {
      Method m = annotation.getClass().getMethodparameterName );
      Object o = m.invokeannotation );
      if o.getClass().getName().equalstype.getName() ) ) {
        return o;
      }
      else {
        String msg = "Wrong parameter type. Expected: " + type.getName() " Actual: " + o.getClass().getName();
        throw new RuntimeExceptionmsg );
      }
    }
    catch NoSuchMethodException e ) {
      String msg = "The specified annotation defines no parameter '" + parameterName + "'.";
      throw new RuntimeExceptionmsg, e );
    }
    catch IllegalAccessException e ) {
      String msg = "Unable to get '" + parameterName + "' from " + annotation.getClass().getName();
      throw new RuntimeExceptionmsg, e );
    }
    catch InvocationTargetException e ) {
      String msg = "Unable to get '" + parameterName + "' from " + annotation.getClass().getName();
      throw new RuntimeExceptionmsg, e );
    }
  }

}

   
    
  
Related examples in the same category
1.Uses reflection to display the annotation associated with a method.
2.Get annotation by annotation class
3.Show all annotations for a class and a method.
4.default values in an annotation.
5.Does a method have an annotation
6.A better concise toString method for annotation types
7.Find Annotated Method
8.Find Annotated Fields
9.Get default annotation value
10.Get annotation value
11.Is Field Annotation Present
12.Get Annotated Declared Fields
ww__w___.__j_a___va_2_s__.co___m_ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.