Package org.apache.myfaces.tobago.internal.config

Examples of org.apache.myfaces.tobago.internal.config.TobagoConfigParser


      CollectionUtils.addAll(urls, classLoader.getResources(META_INF_TOBAGO_CONFIG_XML));
      CollectionUtils.addAll(urls, classLoader.getResources(META_INF_TOBAGO_THEME_XML));

      for (URL themeUrl : urls) {
        if (themeUrl.toString().endsWith(META_INF_TOBAGO_CONFIG_XML)) {
          TobagoConfigFragment tobagoConfig = new TobagoConfigParser().parse(themeUrl);
          for (ThemeImpl theme : tobagoConfig.getThemeDefinitions()) {
            addThemeResources(resources, themeUrl, theme);
          }
        } else {
          // the old way
View Full Code Here

TOP

Related Classes of org.apache.myfaces.tobago.internal.config.TobagoConfigParser

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.