Package org.apache.myfaces.tobago.internal.taglib.component

Source Code of org.apache.myfaces.tobago.internal.taglib.component.GridLayoutConstraintTag

package org.apache.myfaces.tobago.internal.taglib.component;

/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements.  See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License.  You may obtain a copy of the License at
*
*      http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

import org.apache.myfaces.tobago.apt.annotation.BodyContent;
import org.apache.myfaces.tobago.apt.annotation.Tag;
import org.apache.myfaces.tobago.apt.annotation.TagAttribute;
import org.apache.myfaces.tobago.apt.annotation.TagGeneration;
import org.apache.myfaces.tobago.apt.annotation.UIComponentTagAttribute;
import org.apache.myfaces.tobago.compat.FacesUtils;
import org.apache.myfaces.tobago.component.Attributes;
import org.apache.myfaces.tobago.layout.LayoutBase;
import org.apache.myfaces.tobago.layout.LayoutComponent;
import org.apache.myfaces.tobago.layout.LayoutContainer;
import org.apache.myfaces.tobago.layout.Measure;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import javax.faces.component.UIComponent;
import javax.faces.webapp.UIComponentTag;
import javax.servlet.jsp.JspException;
import javax.servlet.jsp.tagext.TagSupport;

/**
* Add GridLayoutConstraints to the parent UIComponent.
*/
@Tag(name = "gridLayoutConstraint", bodyContent = BodyContent.EMPTY)
@TagGeneration(className = "org.apache.myfaces.tobago.internal.taglib.GridLayoutConstraintTag")
public abstract class GridLayoutConstraintTag extends TagSupport {

  private static final long serialVersionUID = 2L;

  private static final Logger LOG = LoggerFactory.getLogger(GridLayoutConstraintTag.class);

  @Override
  public int doStartTag() throws JspException {

    // Locate our parent UIComponentTag
    UIComponentTag tag =
        UIComponentTag.getParentUIComponentTag(pageContext);
    if (tag == null) {
      // TODO Message resource i18n
      throw new JspException("Not nested in faces tag");
    }

    if (!tag.getCreated()) {
      return (SKIP_BODY);
    }

    UIComponent component = tag.getComponentInstance();
    if (component == null) {
      // TODO Message resource i18n
      throw new JspException("Component Instance is null");
    }

    if (!(component instanceof LayoutBase)) {
      // TODO Message resource i18n
      throw new JspException("Component Instance is not a LayoutBase");
    }

    if (component instanceof LayoutComponent && isColumnSpanSet()) {
      if (isColumnSpanLiteral()) {
        ((LayoutComponent) component).setColumnSpan(Integer.valueOf(getColumnSpanValue()));
      } else {
        FacesUtils.setBindingOrExpression(component, Attributes.COLUMN_SPAN, getColumnSpanAsBindingOrExpression());
      }
    }

    if (component instanceof LayoutComponent && isRowSpanSet()) {
      if (isRowSpanLiteral()) {
        ((LayoutComponent) component).setRowSpan(Integer.valueOf(getRowSpanValue()));
      } else {
        FacesUtils.setBindingOrExpression(component, Attributes.ROW_SPAN, getRowSpanAsBindingOrExpression());
      }
    }

    if (isWidthSet()) {
      if (isWidthLiteral()) {
        ((LayoutBase) component).setWidth(Measure.valueOf(getWidthValue()));
//        ((LayoutBase) component).setWidth(Measure.valueOf(getWidthExpression()));
      } else {
        FacesUtils.setBindingOrExpression(component, Attributes.WIDTH, getWidthAsBindingOrExpression());
      }
    }

    if (isHeightSet()) {
      if (isHeightLiteral()) {
        ((LayoutBase) component).setHeight(Measure.valueOf(getHeightValue()));
//        ((LayoutBase) component).setHeight(Measure.valueOf(getHeightExpression()));
      } else {
        FacesUtils.setBindingOrExpression(component, Attributes.HEIGHT, getHeightAsBindingOrExpression());
      }
    }

    if (isMinimumWidthSet()) {
      if (isMinimumWidthLiteral()) {
        ((LayoutBase) component).setMinimumWidth(Measure.valueOf(getMinimumWidthValue()));
      } else {
        FacesUtils.setBindingOrExpression(component, Attributes.MINIMUM_WIDTH, getMinimumWidthAsBindingOrExpression());
      }
    }

    if (isMinimumHeightSet()) {
      if (isMinimumHeightLiteral()) {
        ((LayoutBase) component).setMinimumHeight(Measure.valueOf(getMinimumHeightValue()));
      } else {
        FacesUtils.setBindingOrExpression(component, Attributes.MINIMUM_WIDTH, getMinimumHeightAsBindingOrExpression());
      }
    }

    if (isPreferredWidthSet()) {
      if (isPreferredWidthLiteral()) {
        ((LayoutBase) component).setPreferredWidth(Measure.valueOf(getPreferredWidthValue()));
      } else {
        FacesUtils.setBindingOrExpression(component, Attributes.PREFERRED_WIDTH,
            getPreferredWidthAsBindingOrExpression());
      }
    }

    if (isPreferredHeightSet()) {
      if (isPreferredHeightLiteral()) {
        ((LayoutBase) component).setPreferredHeight(Measure.valueOf(getPreferredHeightValue()));
      } else {
        FacesUtils.setBindingOrExpression(component, Attributes.PREFERRED_WIDTH,
            getPreferredHeightAsBindingOrExpression());
      }
    }

    if (isMaximumWidthSet()) {
      if (isMaximumWidthLiteral()) {
        ((LayoutBase) component).setMaximumWidth(Measure.valueOf(getMaximumWidthValue()));
      } else {
        FacesUtils.setBindingOrExpression(component, Attributes.MAXIMUM_WIDTH, getMaximumWidthAsBindingOrExpression());
      }
    }

    if (isMaximumHeightSet()) {
      if (isMaximumHeightLiteral()) {
        ((LayoutBase) component).setMaximumHeight(Measure.valueOf(getMaximumHeightValue()));
      } else {
        FacesUtils.setBindingOrExpression(component, Attributes.MAXIMUM_WIDTH, getMaximumHeightAsBindingOrExpression());
      }
    }

    if (isMarginLeftSet()) {
      if (isMarginLeftLiteral()) {
        ((LayoutBase) component).setMarginLeft(Measure.valueOf(getMarginLeftValue()));
      } else {
        FacesUtils.setBindingOrExpression(component, Attributes.MARGIN_LEFT, getMarginLeftAsBindingOrExpression());
      }
    }

    if (isMarginRightSet()) {
      if (isMarginRightLiteral()) {
        ((LayoutBase) component).setMarginRight(Measure.valueOf(getMarginRightValue()));
      } else {
        FacesUtils.setBindingOrExpression(component, Attributes.MARGIN_RIGHT, getMarginRightAsBindingOrExpression());
      }
    }
    if (isMarginTopSet()) {
      if (isMarginTopLiteral()) {
        ((LayoutBase) component).setMarginTop(Measure.valueOf(getMarginTopValue()));
      } else {
        FacesUtils.setBindingOrExpression(component, Attributes.MARGIN_TOP, getMarginTopAsBindingOrExpression());
      }
    }

    if (isMarginBottomSet()) {
      if (isMarginBottomLiteral()) {
        ((LayoutBase) component).setMarginBottom(Measure.valueOf(getMarginBottomValue()));
      } else {
        FacesUtils.setBindingOrExpression(component, Attributes.MARGIN_BOTTOM, getMarginBottomAsBindingOrExpression());
      }
    }

    if (isBorderLeftSet()) {
      if (component instanceof LayoutContainer) {
        if (isBorderLeftLiteral()) {
          ((LayoutContainer) component).setBorderLeft(Measure.valueOf(getBorderLeftValue()));
        } else {
          FacesUtils.setBindingOrExpression(component, Attributes.BORDER_LEFT, getBorderLeftAsBindingOrExpression());
        }
      } else {
        LOG.warn("Ignoring border left, because the parent is not a LayoutContainer!");
      }
    }

    if (isBorderRightSet()) {
      if (component instanceof LayoutContainer) {
        if (isBorderRightLiteral()) {
          ((LayoutContainer) component).setBorderRight(Measure.valueOf(getBorderRightValue()));
        } else {
          FacesUtils.setBindingOrExpression(component, Attributes.BORDER_RIGHT, getBorderRightAsBindingOrExpression());
        }
      } else {
        LOG.warn("Ignoring border left, because the parent is not a LayoutContainer!");
      }
    }
    if (isBorderTopSet()) {
      if (component instanceof LayoutContainer) {
        if (isBorderTopLiteral()) {
          ((LayoutContainer) component).setBorderTop(Measure.valueOf(getBorderTopValue()));
        } else {
          FacesUtils.setBindingOrExpression(component, Attributes.BORDER_TOP, getBorderTopAsBindingOrExpression());
        }
      } else {
        LOG.warn("Ignoring border left, because the parent is not a LayoutContainer!");
      }
    }

    if (isBorderBottomSet()) {
      if (component instanceof LayoutContainer) {
        if (isBorderBottomLiteral()) {
          ((LayoutContainer) component).setBorderBottom(Measure.valueOf(getBorderBottomValue()));
        } else {
          FacesUtils
              .setBindingOrExpression(component, Attributes.BORDER_BOTTOM, getBorderBottomAsBindingOrExpression());
        }
      } else {
        LOG.warn("Ignoring border left, because the parent is not a LayoutContainer!");
      }
    }

    if (isPaddingLeftSet()) {
      if (component instanceof LayoutContainer) {
        if (isPaddingLeftLiteral()) {
          ((LayoutContainer) component).setPaddingLeft(Measure.valueOf(getPaddingLeftValue()));
        } else {
          FacesUtils.setBindingOrExpression(component, Attributes.PADDING_LEFT, getPaddingLeftAsBindingOrExpression());
        }
      } else {
        LOG.warn("Ignoring padding left, because the parent is not a LayoutContainer!");
      }
    }

    if (isPaddingRightSet()) {
      if (component instanceof LayoutContainer) {
        if (isPaddingRightLiteral()) {
          ((LayoutContainer) component).setPaddingRight(Measure.valueOf(getPaddingRightValue()));
        } else {
          FacesUtils.setBindingOrExpression(
              component, Attributes.PADDING_RIGHT, getPaddingRightAsBindingOrExpression());
        }
      } else {
        LOG.warn("Ignoring padding left, because the parent is not a LayoutContainer!");
      }
    }
    if (isPaddingTopSet()) {
      if (component instanceof LayoutContainer) {
        if (isPaddingTopLiteral()) {
          ((LayoutContainer) component).setPaddingTop(Measure.valueOf(getPaddingTopValue()));
        } else {
          FacesUtils.setBindingOrExpression(component, Attributes.PADDING_TOP, getPaddingTopAsBindingOrExpression());
        }
      } else {
        LOG.warn("Ignoring padding left, because the parent is not a LayoutContainer!");
      }
    }

    if (isPaddingBottomSet()) {
      if (component instanceof LayoutContainer) {
        if (isPaddingBottomLiteral()) {
          ((LayoutContainer) component).setPaddingBottom(Measure.valueOf(getPaddingBottomValue()));
        } else {
          FacesUtils
              .setBindingOrExpression(component, Attributes.PADDING_BOTTOM, getPaddingBottomAsBindingOrExpression());
        }
      } else {
        LOG.warn("Ignoring padding left, because the parent is not a LayoutContainer!");
      }
    }

    return (SKIP_BODY);
  }

  /**
   * The number of horizontal cells this component should use.
   */
  @TagAttribute(name = "columnSpan")
  public abstract String getColumnSpanValue();

  public abstract boolean isColumnSpanSet();

  public abstract boolean isColumnSpanLiteral();

  public abstract Object getColumnSpanAsBindingOrExpression();

  /**
   * The number of vertical cells this component should use.
   */
  @TagAttribute(name = "rowSpan")
  public abstract String getRowSpanValue();

  public abstract boolean isRowSpanSet();

  public abstract boolean isRowSpanLiteral();

  public abstract Object getRowSpanAsBindingOrExpression();


  /**
   * The width for this component.
   */
  @TagAttribute(name = "width")
  @UIComponentTagAttribute(type = "org.apache.myfaces.tobago.layout.Measure")
  public abstract String getWidthValue();

  public abstract boolean isWidthSet();

  public abstract boolean isWidthLiteral();

  public abstract Object getWidthAsBindingOrExpression();

  /**
   * The height for this component.
   */
  @TagAttribute(name = "height")
  @UIComponentTagAttribute(type = "org.apache.myfaces.tobago.layout.Measure")
  public abstract String getHeightValue();

  public abstract boolean isHeightSet();

  public abstract boolean isHeightLiteral();

  public abstract Object getHeightAsBindingOrExpression();

  /**
   * The minimum width for this component.
   */
  @TagAttribute(name = "minimumWidth")
  @UIComponentTagAttribute(type = "org.apache.myfaces.tobago.layout.Measure")
  public abstract String getMinimumWidthValue();

  public abstract boolean isMinimumWidthSet();

  public abstract boolean isMinimumWidthLiteral();

  public abstract Object getMinimumWidthAsBindingOrExpression();

  /**
   * The minimum height for this component.
   */
  @TagAttribute(name = "minimumHeight")
  @UIComponentTagAttribute(type = "org.apache.myfaces.tobago.layout.Measure")
  public abstract String getMinimumHeightValue();

  public abstract boolean isMinimumHeightSet();

  public abstract boolean isMinimumHeightLiteral();

  public abstract Object getMinimumHeightAsBindingOrExpression();

  /**
   * The preferred width for this component.
   */
  @TagAttribute(name = "preferredWidth")
  @UIComponentTagAttribute(type = "org.apache.myfaces.tobago.layout.Measure")
  public abstract String getPreferredWidthValue();

  public abstract boolean isPreferredWidthSet();

  public abstract boolean isPreferredWidthLiteral();

  public abstract Object getPreferredWidthAsBindingOrExpression();

  /**
   * The preferred height for this component.
   */
  @TagAttribute(name = "preferredHeight")
  @UIComponentTagAttribute(type = "org.apache.myfaces.tobago.layout.Measure")
  public abstract String getPreferredHeightValue();

  public abstract boolean isPreferredHeightSet();

  public abstract boolean isPreferredHeightLiteral();

  public abstract Object getPreferredHeightAsBindingOrExpression();

  /**
   * The maximum width for this component.
   */
  @TagAttribute(name = "maximumWidth")
  @UIComponentTagAttribute(type = "org.apache.myfaces.tobago.layout.Measure")
  public abstract String getMaximumWidthValue();

  public abstract boolean isMaximumWidthSet();

  public abstract boolean isMaximumWidthLiteral();

  public abstract Object getMaximumWidthAsBindingOrExpression();

  /**
   * The maximum height for this component.
   */
  @TagAttribute(name = "maximumHeight")
  @UIComponentTagAttribute(type = "org.apache.myfaces.tobago.layout.Measure")
  public abstract String getMaximumHeightValue();

  public abstract boolean isMaximumHeightSet();

  public abstract boolean isMaximumHeightLiteral();

  public abstract Object getMaximumHeightAsBindingOrExpression();

  /**
   * The left margin for this component.
   */
  @TagAttribute(name = "marginLeft")
  @UIComponentTagAttribute(type = "org.apache.myfaces.tobago.layout.Measure")
  public abstract String getMarginLeftValue();

  public abstract boolean isMarginLeftSet();

  public abstract boolean isMarginLeftLiteral();

  public abstract Object getMarginLeftAsBindingOrExpression();

  /**
   * The right margin for this component.
   */
  @TagAttribute(name = "marginRight")
  @UIComponentTagAttribute(type = "org.apache.myfaces.tobago.layout.Measure")
  public abstract String getMarginRightValue();

  public abstract boolean isMarginRightSet();

  public abstract boolean isMarginRightLiteral();

  public abstract Object getMarginRightAsBindingOrExpression();

  /**
   * The top margin for this component.
   */
  @TagAttribute(name = "marginTop")
  @UIComponentTagAttribute(type = "org.apache.myfaces.tobago.layout.Measure")
  public abstract String getMarginTopValue();

  public abstract boolean isMarginTopSet();

  public abstract boolean isMarginTopLiteral();

  public abstract Object getMarginTopAsBindingOrExpression();

  /**
   * The bottom margin for this component.
   */
  @TagAttribute(name = "marginBottom")
  @UIComponentTagAttribute(type = "org.apache.myfaces.tobago.layout.Measure")
  public abstract String getMarginBottomValue();

  public abstract boolean isMarginBottomSet();

  public abstract boolean isMarginBottomLiteral();

  public abstract Object getMarginBottomAsBindingOrExpression();

  /**
   * The left border area for this component. Its only applicably for containers.
   */
  @TagAttribute(name = "borderLeft")
  @UIComponentTagAttribute(type = "org.apache.myfaces.tobago.layout.Measure")
  public abstract String getBorderLeftValue();

  public abstract boolean isBorderLeftSet();

  public abstract boolean isBorderLeftLiteral();

  public abstract Object getBorderLeftAsBindingOrExpression();

  /**
   * The right border area for this component. Its only applicably for containers.
   */
  @TagAttribute(name = "borderRight")
  @UIComponentTagAttribute(type = "org.apache.myfaces.tobago.layout.Measure")
  public abstract String getBorderRightValue();

  public abstract boolean isBorderRightSet();

  public abstract boolean isBorderRightLiteral();

  public abstract Object getBorderRightAsBindingOrExpression();

  /**
   * The top border area for this component. Its only applicably for containers.
   */
  @TagAttribute(name = "borderTop")
  @UIComponentTagAttribute(type = "org.apache.myfaces.tobago.layout.Measure")
  public abstract String getBorderTopValue();

  public abstract boolean isBorderTopSet();

  public abstract boolean isBorderTopLiteral();

  public abstract Object getBorderTopAsBindingOrExpression();

  /**
   * The bottom border area for this component. Its only applicably for containers.
   */
  @TagAttribute(name = "borderBottom")
  @UIComponentTagAttribute(type = "org.apache.myfaces.tobago.layout.Measure")
  public abstract String getBorderBottomValue();

  public abstract boolean isBorderBottomSet();

  public abstract boolean isBorderBottomLiteral();

  public abstract Object getBorderBottomAsBindingOrExpression();

  /**
   * The left padding for this component. Its only applicably for containers.
   */
  @TagAttribute(name = "paddingLeft")
  @UIComponentTagAttribute(type = "org.apache.myfaces.tobago.layout.Measure")
  public abstract String getPaddingLeftValue();

  public abstract boolean isPaddingLeftSet();

  public abstract boolean isPaddingLeftLiteral();

  public abstract Object getPaddingLeftAsBindingOrExpression();

  /**
   * The right padding for this component. Its only applicably for containers.
   */
  @TagAttribute(name = "paddingRight")
  @UIComponentTagAttribute(type = "org.apache.myfaces.tobago.layout.Measure")
  public abstract String getPaddingRightValue();

  public abstract boolean isPaddingRightSet();

  public abstract boolean isPaddingRightLiteral();

  public abstract Object getPaddingRightAsBindingOrExpression();

  /**
   * The top padding for this component. Its only applicably for containers.
   */
  @TagAttribute(name = "paddingTop")
  @UIComponentTagAttribute(type = "org.apache.myfaces.tobago.layout.Measure")
  public abstract String getPaddingTopValue();

  public abstract boolean isPaddingTopSet();

  public abstract boolean isPaddingTopLiteral();

  public abstract Object getPaddingTopAsBindingOrExpression();

  /**
   * The bottom padding for this component. Its only applicably for containers.
   */
  @TagAttribute(name = "paddingBottom")
  @UIComponentTagAttribute(type = "org.apache.myfaces.tobago.layout.Measure")
  public abstract String getPaddingBottomValue();

  public abstract boolean isPaddingBottomSet();

  public abstract boolean isPaddingBottomLiteral();

  public abstract Object getPaddingBottomAsBindingOrExpression();
}
TOP

Related Classes of org.apache.myfaces.tobago.internal.taglib.component.GridLayoutConstraintTag

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.