Package com.almende.eve.agent.annotation

Examples of com.almende.eve.agent.annotation.Required


   * @param param
   * @return required
   */
  private static boolean isRequired(AnnotatedParam param) {
    boolean required = true;
    Required requiredAnnotation = param.getAnnotation(Required.class);
    if (requiredAnnotation != null) {
      required = requiredAnnotation.value();
    }
    return required;
  }
View Full Code Here


   * @param param
   * @return required
   */
  private static boolean isRequired(AnnotatedParam param) {
    boolean required = true;
    Required requiredAnnotation = param.getAnnotation(Required.class);
    if (requiredAnnotation != null) {
      required = requiredAnnotation.value();
    }
    return required;
  }
View Full Code Here

TOP

Related Classes of com.almende.eve.agent.annotation.Required

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.