Package org.exoplatform.portal.resource.config.tasks

Examples of org.exoplatform.portal.resource.config.tasks.PortalSkinTask


    */
   private static GateinResource elemtToTask(String tagName)
   {
      if (tagName.equals(GateinResource.PORTAl_SKIN_TAG))
      {
         return new PortalSkinTask();
      }
      else if (tagName.equals(GateinResource.WINDOW_STYLE_TAG))
      {
         return new ThemeTask();
      }
View Full Code Here


      {
         if (!element.getTagName().equals(GateinResource.PORTAl_SKIN_TAG))
         {
            return null;
         }
         PortalSkinTask pTask = new PortalSkinTask();
         bindingCSSPath(pTask, element);
         bindingSkinName(pTask, element);
         bindingModuleName(pTask, element);
         bindingOverwrite(pTask, element);
         return pTask;
View Full Code Here

    /**
     * Return a skin task associated to the <code>tagName</code> of an XML element
     */
    private static SkinConfigTask elemtToTask(String tagName) {
        if (tagName.equals(PORTAl_SKIN_TAG)) {
            return new PortalSkinTask();
        } else if (tagName.equals(WINDOW_STYLE_TAG)) {
            return new ThemeTask();
        } else if (tagName.equals(PORTLET_SKIN_TAG)) {
            return new PortletSkinTask();
        }
View Full Code Here

    */
   private static SkinConfigTask elemtToTask(String tagName)
   {
      if (tagName.equals(PORTAl_SKIN_TAG))
      {
         return new PortalSkinTask();
      }
      else if (tagName.equals(WINDOW_STYLE_TAG))
      {
         return new ThemeTask();
      }
View Full Code Here

    /**
     * Return a skin task associated to the <code>tagName</code> of an XML element
     */
    private static SkinConfigTask elemtToTask(String tagName) {
        if (tagName.equals(PORTAl_SKIN_TAG)) {
            return new PortalSkinTask();
        } else if (tagName.equals(WINDOW_STYLE_TAG)) {
            return new ThemeTask();
        } else if (tagName.equals(PORTLET_SKIN_TAG)) {
            return new PortletSkinTask();
        }
View Full Code Here

    */
   private static SkinConfigTask elemtToTask(String tagName)
   {
      if (tagName.equals(PORTAl_SKIN_TAG))
      {
         return new PortalSkinTask();
      }
      else if (tagName.equals(WINDOW_STYLE_TAG))
      {
         return new ThemeTask();
      }
View Full Code Here

    */
   private static GateinResource elemtToTask(String tagName)
   {
      if (tagName.equals(GateinResource.PORTAl_SKIN_TAG))
      {
         return new PortalSkinTask();
      }
      else if (tagName.equals(GateinResource.WINDOW_STYLE_TAG))
      {
         return new ThemeTask();
      }
View Full Code Here

    */
   private static SkinConfigTask elemtToTask(String tagName)
   {
      if (tagName.equals(PORTAl_SKIN_TAG))
      {
         return new PortalSkinTask();
      }
      else if (tagName.equals(WINDOW_STYLE_TAG))
      {
         return new ThemeTask();
      }
View Full Code Here

TOP

Related Classes of org.exoplatform.portal.resource.config.tasks.PortalSkinTask

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.