Package com.liferay.faces.bridge.component

Examples of com.liferay.faces.bridge.component.ResourceComponent


      if (resources == null) {
        resources = new ArrayList<UIComponent>();
      }

      String resourceLibrary = PRIMEFACES_THEME_PREFIX + primeFacesThemeName;
      ResourceComponent primeFacesStyleSheet = new ResourceComponent(facesContext, PRIMEFACES_THEME_RESOURCE_NAME,
          resourceLibrary, StringPool.HEAD);
      resources.add(primeFacesStyleSheet);
    }

    return resources;
View Full Code Here


        buf.append(ICEFACES_THEME_RESOURCE_NAME);
        resourceName = buf.toString();
        resourceLibrary = ICEFACES_LIBRARY_NAME_ACE;
      }

      ResourceComponent iceFacesStyleSheet = new ResourceComponent(facesContext, resourceName, resourceLibrary,
          StringPool.HEAD);
      resources.add(iceFacesStyleSheet);
    }

    return resources;
View Full Code Here

TOP

Related Classes of com.liferay.faces.bridge.component.ResourceComponent

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.