Package org.mokai.annotation

Examples of org.mokai.annotation.Description


  }

  private static String getDescription(Class<?> clazz) {
    String description = "";
    if (clazz.isAnnotationPresent(Description.class)) {
      Description descriptionAnnotation = clazz.getAnnotation(Description.class);
      description = descriptionAnnotation.value();
    }

    return description;
  }
View Full Code Here

TOP

Related Classes of org.mokai.annotation.Description

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.