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

Source Code of org.apache.myfaces.tobago.internal.taglib.TreeSelectTag

// ---------- Attention: Generated code, please do not modify! ----------- 

/*
* 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.
*/

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

import javax.faces.application.Application;
import javax.faces.component.UIComponent;
import javax.faces.context.FacesContext;
import org.apache.commons.lang.StringUtils;
import org.apache.myfaces.tobago.component.UITreeSelect;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
* JSP Tag class, generated from template {@code tag1.2.stg} with class
* {@link org.apache.myfaces.tobago.internal.taglib.component.TreeSelectTagDeclaration}.
*/
public final class TreeSelectTag extends TobagoELTag {
  private static final Logger LOG = LoggerFactory.getLogger(TreeSelectTag.class);
  private javax.el.ValueExpression  markup;
  private javax.el.ValueExpression  value;
  private javax.el.ValueExpression  label;
  private javax.el.ValueExpression  showCheckbox;
  private javax.el.ValueExpression  tip;

  @Override
  public String getComponentType() {
    return UITreeSelect.COMPONENT_TYPE;
  }
  @Override
  public String getRendererType() {
    return "TreeSelect";
  }

  @Override
  protected void setProperties(final UIComponent uiComponent) {
    super.setProperties(uiComponent);
    final UITreeSelect component = (UITreeSelect) uiComponent;
    final FacesContext context = FacesContext.getCurrentInstance();
    final Application application = context.getApplication();
    if (markup != null) {
      if (!markup.isLiteralText()) {
        component.setValueExpression("markup", markup);
      } else {
        component.setMarkup(org.apache.myfaces.tobago.context.Markup.valueOf(markup.getExpressionString()));
      }
    }
    if (value != null) {
      component.setValueExpression("value", value);
    }

    if (label != null) {
      component.setValueExpression("label", label);
    }

    if (showCheckbox != null) {
      if (!showCheckbox.isLiteralText()) {
        component.setValueExpression("showCheckbox", showCheckbox);
      } else {
        component.setShowCheckbox(Boolean.parseBoolean(showCheckbox.getExpressionString()));
      }
    }
    if (tip != null) {
      component.setValueExpression("tip", tip);
    }

  }

  public javax.el.ValueExpression getMarkup() {
    return markup;
  }

  public void setMarkup(final javax.el.ValueExpression markup) {
    this.markup = markup;
  }

  public javax.el.ValueExpression getValue() {
    return value;
  }

  public void setValue(final javax.el.ValueExpression value) {
    this.value = value;
  }

  public javax.el.ValueExpression getLabel() {
    return label;
  }

  public void setLabel(final javax.el.ValueExpression label) {
    this.label = label;
  }

  public javax.el.ValueExpression getShowCheckbox() {
    return showCheckbox;
  }

  public void setShowCheckbox(final javax.el.ValueExpression showCheckbox) {
    this.showCheckbox = showCheckbox;
  }

  public javax.el.ValueExpression getTip() {
    return tip;
  }

  public void setTip(final javax.el.ValueExpression tip) {
    this.tip = tip;
  }



  @Override
  public void release() {
    super.release();
    markup = null;
    value = null;
    label = null;
    showCheckbox = null;
    tip = null;
  }
}
TOP

Related Classes of org.apache.myfaces.tobago.internal.taglib.TreeSelectTag

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.