Package org.infinispan.config

Examples of org.infinispan.config.ConfigurationDocRef


   protected String findAttributeDescription(Field field) {
      String desc = null;
      if (field.isAnnotationPresent(ConfigurationDoc.class)) {
         desc = field.getAnnotation(ConfigurationDoc.class).desc();
      } else if (field.isAnnotationPresent(ConfigurationDocRef.class)) {
         ConfigurationDocRef docRef = field.getAnnotation(ConfigurationDocRef.class);
         Doc fieldDocRec = findDocElement(docRef.bean(), docRef.targetElement());
         desc = fieldDocRec.commentText();
      }
      return desc;
   }
View Full Code Here

TOP

Related Classes of org.infinispan.config.ConfigurationDocRef

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.