Examples of Trait


Examples of org.eclipse.jst.jsf.common.metadata.Trait

      if (uri != null) {
        final ITaglibDomainMetaDataQuery query = getQuery(part, node);
        if (query != null) {
          _tagEntity = query.getQueryHelper().getEntity(uri, node.getLocalName());
          if (_tagEntity != null) {
            Trait pds = query.findTrait(_tagEntity, QuickEditTabSections.TRAIT_ID);
            if (pds != null){
              _quickEditTabSections = (QuickEditTabSections)pds.getValue();
            }   
          }     
        }
      }
    }
View Full Code Here

Examples of org.eclipse.jst.jsf.common.metadata.Trait

        private static LocaleSetAggregator create(final IProject project,
                                              final String uri,
                                              final String elementName, final String attributeName)
        {
            final ITaglibDomainMetaDataModelContext mdContext = TaglibDomainMetaDataQueryHelper.createMetaDataModelContext(project, uri);
            final Trait trait = TaglibDomainMetaDataQueryHelper.getTrait(mdContext, elementName+"/"+attributeName, SETS_LOCALE); //$NON-NLS-1$

            if (TraitValueHelper.getValueAsBoolean(trait))
            {
                return new LocaleSetAggregator();
            }
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.