Package org.apache.myfaces.taglib.html

Source Code of org.apache.myfaces.taglib.html.HtmlMessageTag

// WARNING: This file was automatically generated. Do not edit it directly,
//          or you will lose your changes.

/*
* 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.taglib.html;

import javax.el.ValueExpression;
import javax.faces.component.UIComponent;
import javax.faces.component.UIMessage;
import javax.faces.component.html.HtmlMessage;
import javax.faces.webapp.UIComponentELTag;

/**
* Auto-generated tag class.
*/
public class HtmlMessageTag extends UIComponentELTag
{

  /**
   * Construct an instance of the HtmlMessageTag.
   */
  public HtmlMessageTag()
  {
  }

  public String getComponentType()
  {
    return "javax.faces.HtmlMessage";
  }

  public String getRendererType()
  {
    return "javax.faces.Message";
  }

  private ValueExpression _style;
  public void setStyle(ValueExpression style)
  {
    _style = style;
  }

  private ValueExpression _styleClass;
  public void setStyleClass(ValueExpression styleClass)
  {
    _styleClass = styleClass;
  }

  private ValueExpression _dir;
  public void setDir(ValueExpression dir)
  {
    _dir = dir;
  }

  private ValueExpression _lang;
  public void setLang(ValueExpression lang)
  {
    _lang = lang;
  }

  private ValueExpression _title;
  public void setTitle(ValueExpression title)
  {
    _title = title;
  }

  private ValueExpression _infoClass;
  public void setInfoClass(ValueExpression infoClass)
  {
    _infoClass = infoClass;
  }

  private ValueExpression _infoStyle;
  public void setInfoStyle(ValueExpression infoStyle)
  {
    _infoStyle = infoStyle;
  }

  private ValueExpression _warnClass;
  public void setWarnClass(ValueExpression warnClass)
  {
    _warnClass = warnClass;
  }

  private ValueExpression _warnStyle;
  public void setWarnStyle(ValueExpression warnStyle)
  {
    _warnStyle = warnStyle;
  }

  private ValueExpression _errorClass;
  public void setErrorClass(ValueExpression errorClass)
  {
    _errorClass = errorClass;
  }

  private ValueExpression _errorStyle;
  public void setErrorStyle(ValueExpression errorStyle)
  {
    _errorStyle = errorStyle;
  }

  private ValueExpression _fatalClass;
  public void setFatalClass(ValueExpression fatalClass)
  {
    _fatalClass = fatalClass;
  }

  private ValueExpression _fatalStyle;
  public void setFatalStyle(ValueExpression fatalStyle)
  {
    _fatalStyle = fatalStyle;
  }

  private ValueExpression _tooltip;
  public void setTooltip(ValueExpression tooltip)
  {
    _tooltip = tooltip;
  }

  private ValueExpression _for;
  public void setFor(ValueExpression forParam)
  {
    _for = forParam;
  }

  private ValueExpression _showDetail;
  public void setShowDetail(ValueExpression showDetail)
  {
    _showDetail = showDetail;
  }

  private ValueExpression _showSummary;
  public void setShowSummary(ValueExpression showSummary)
  {
    _showSummary = showSummary;
  }

  @Override
  protected void setProperties(UIComponent component)
{
  if (!(component instanceof HtmlMessage))
  {
    throw new IllegalArgumentException("Component " + component.getClass().getName() + " is no HtmlMessage");
  }
  HtmlMessage comp = (HtmlMessage)component;

  super.setProperties(component);

  if (_style != null)
  {
    comp.setValueExpression("style", _style);
  }
  if (_fatalClass != null)
  {
    comp.setValueExpression("fatalClass", _fatalClass);
  }
  if (_infoStyle != null)
  {
    comp.setValueExpression("infoStyle", _infoStyle);
  }
  if (_errorStyle != null)
  {
    comp.setValueExpression("errorStyle", _errorStyle);
  }
  if (_fatalStyle != null)
  {
    comp.setValueExpression("fatalStyle", _fatalStyle);
  }
  if (_errorClass != null)
  {
    comp.setValueExpression("errorClass", _errorClass);
  }
  if (_lang != null)
  {
    comp.setValueExpression("lang", _lang);
  }
  if (_showSummary != null)
  {
    comp.setValueExpression("showSummary", _showSummary);
  }
  if (_showDetail != null)
  {
    comp.setValueExpression("showDetail", _showDetail);
  }
  if (_warnStyle != null)
  {
    comp.setValueExpression("warnStyle", _warnStyle);
  }
  if (_dir != null)
  {
    comp.setValueExpression("dir", _dir);
  }
  if (_for != null)
  {
    comp.setValueExpression("for", _for);
  }
  if (_warnClass != null)
  {
    comp.setValueExpression("warnClass", _warnClass);
  }
  if (_tooltip != null)
  {
    comp.setValueExpression("tooltip", _tooltip);
  }
  if (_infoClass != null)
  {
    comp.setValueExpression("infoClass", _infoClass);
  }
  if (_styleClass != null)
  {
    comp.setValueExpression("styleClass", _styleClass);
  }
  if (_title != null)
  {
    comp.setValueExpression("title", _title);
  }
}

@Override
public void release()
{
  super.release();
  _style = null;
  _fatalClass = null;
  _infoStyle = null;
  _errorStyle = null;
  _fatalStyle = null;
  _errorClass = null;
  _lang = null;
  _showSummary = null;
  _showDetail = null;
  _warnStyle = null;
  _dir = null;
  _for = null;
  _warnClass = null;
  _tooltip = null;
  _infoClass = null;
  _styleClass = null;
  _title = null;
}
}
TOP

Related Classes of org.apache.myfaces.taglib.html.HtmlMessageTag

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.