Package org.primefaces.component.message

Source Code of org.primefaces.component.message.Message

/*
* Copyright 2009 Prime Technology.
*
* Licensed 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.primefaces.component.message;

import javax.faces.component.UIComponentBase;
import javax.faces.context.FacesContext;
import javax.el.ValueExpression;
import javax.el.MethodExpression;
import javax.faces.render.Renderer;
import java.io.IOException;
import org.primefaces.resource.ResourceHolder;
import org.primefaces.renderkit.PartialRenderer;

public class Message extends UIComponentBase {


  public static final String COMPONENT_TYPE = "org.primefaces.component.Message";
  public static final String COMPONENT_FAMILY = "org.primefaces.component";
  private static final String DEFAULT_RENDERER = "org.primefaces.component.MessageRenderer";

  private java.lang.Boolean _showSummary;
  private java.lang.Boolean _showDetail;
  private java.lang.String _for;

  public Message() {
    setRendererType(DEFAULT_RENDERER);
    ResourceHolder resourceHolder = getResourceHolder();
    if(resourceHolder != null) {
      resourceHolder.addResource("/primefaces/messages/messages.css");
    }
  }

  public String getFamily() {
    return COMPONENT_FAMILY;
  }

  public boolean isShowSummary() {
    if(_showSummary != null )
      return _showSummary;

    ValueExpression ve = getValueExpression("showSummary");
    return ve != null ? (java.lang.Boolean) ve.getValue(getFacesContext().getELContext())  : false;
  }
  public void setShowSummary(boolean _showSummary) {
    this._showSummary = _showSummary;
  }

  public boolean isShowDetail() {
    if(_showDetail != null )
      return _showDetail;

    ValueExpression ve = getValueExpression("showDetail");
    return ve != null ? (java.lang.Boolean) ve.getValue(getFacesContext().getELContext())  : true;
  }
  public void setShowDetail(boolean _showDetail) {
    this._showDetail = _showDetail;
  }

  public java.lang.String getFor() {
    if(_for != null )
      return _for;

    ValueExpression ve = getValueExpression("for");
    return ve != null ? (java.lang.String) ve.getValue(getFacesContext().getELContext())  : null;
  }
  public void setFor(java.lang.String _for) {
    this._for = _for;
  }

  public Object saveState(FacesContext context) {
    Object values[] = new Object[4];
    values[0] = super.saveState(context);
    values[1] = _showSummary;
    values[2] = _showDetail;
    values[3] = _for;
    return ((Object) values);
  }
  public void restoreState(FacesContext context, Object state) {
    Object values[] = (Object[]) state;
    super.restoreState(context, values[0]);
    _showSummary = (Boolean) values[1];
    _showDetail = (Boolean) values[2];
    _for = (String) values[3];
  }

  protected FacesContext getFacesContext() {
    return FacesContext.getCurrentInstance();
  }

  protected ResourceHolder getResourceHolder() {
    FacesContext facesContext = getFacesContext();
    if(facesContext == null)
      return null;

    ValueExpression ve = facesContext.getApplication().getExpressionFactory().createValueExpression(facesContext.getELContext(), "#{primeFacesResourceHolder}", ResourceHolder.class);

    return (ResourceHolder) ve.getValue(facesContext.getELContext());
  }
}
TOP

Related Classes of org.primefaces.component.message.Message

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.