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.JavaFX
25.JDK 6
26.JDK 7
27.JNDI LDAP
28.JPA
29.JSP
30.JSTL
31.Language Basics
32.Network Protocol
33.PDF RTF
34.Reflection
35.Regular Expressions
36.Scripting
37.Security
38.Servlets
39.Spring
40.Swing Components
41.Swing JFC
42.SWT JFace Eclipse
43.Threads
44.Tiny Application
45.Velocity
46.Web Services SOA
47.XML
Java » Reflection » Annotation 




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
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.