Package com.sun.facelets.tag

Examples of com.sun.facelets.tag.TagAttribute


  protected MetaRuleset createSubComponentMetaRuleset(Class aClass) {
    MetaRuleset metaRuleset = super.createMetaRuleset(aClass);
    TagAttribute [] attrs = tag.getAttributes().getAll();
    for (int i = 0; i < attrs.length; i++) {
      TagAttribute attr = attrs[i];
      if (!(attr.getLocalName().equals(TobagoConstants.ATTR_CONVERTER)
          || attr.getLocalName().equals(TobagoConstants.ATTR_VALUE))) {
        metaRuleset.ignore(attr.getLocalName());
      }
    }
    return metaRuleset;
  }
View Full Code Here


      metaRuleset.ignore(TobagoConstants.ATTR_VALUE);
      return metaRuleset;
    } else {
      TagAttribute [] attrs = tag.getAttributes().getAll();
      for (int i = 0; i < attrs.length; i++) {
        TagAttribute attr = attrs[i];
        if (!(attr.getLocalName().equals(TobagoConstants.ATTR_CONVERTER)
            || attr.getLocalName().equals(TobagoConstants.ATTR_VALUE))) {
          metaRuleset.ignore(attr.getLocalName());
        }
      }
      return metaRuleset;
    }
  }
View Full Code Here

TOP

Related Classes of com.sun.facelets.tag.TagAttribute

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.