Examples of YCmpXsdAttribute


Examples of de.hybris.yfaces.doclet.YCmpXsdElement.YCmpXsdAttribute

      {
        if (md.name().startsWith("set"))
        {
          String property = md.name().substring(3).toLowerCase();

          YCmpXsdAttribute xsdprop = xcmp.getAttribute(property);
          if (xsdprop != null)
          {
            String descr = md.commentText();
            xsdprop.setDescription(descr);
            xsdprop.setType(md.signature().substring(1, md.signature().length() - 1));

            //            log.info("Found YComponent: " + xcmp.getComponentInfo().getId() + "." + xsdprop.getName() + " -> " + xsdprop.getDescription());
          }
        }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.