Package com.almende.eve.transform.rpc.annotation

Examples of com.almende.eve.transform.rpc.annotation.Name


   *            the param
   * @return name
   */
  private static String getName(final AnnotatedParam param) {
    String name = null;
    final Name nameAnnotation = param.getAnnotation(Name.class);
    if (nameAnnotation != null) {
      name = nameAnnotation.value();
    }
    return name;
  }
View Full Code Here

TOP

Related Classes of com.almende.eve.transform.rpc.annotation.Name

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.