Package org.jboss.seam.ui.taglib

Source Code of org.jboss.seam.ui.taglib.ConvertEntityTag

/**
* GENERATED FILE - DO NOT EDIT
*
*/
package org.jboss.seam.ui.taglib;

import javax.faces.webapp.ConverterELTag ;
import javax.el.ELException;
import javax.faces.FacesException;
import javax.faces.component.UIComponent;
import javax.el.MethodExpression;
import javax.faces.el.MethodBinding;
import javax.faces.el.ValueBinding;
import javax.el.ValueExpression;
import javax.faces.convert.Converter;
import javax.faces.webapp.UIComponentTag;
import javax.faces.context.FacesContext;
import javax.servlet.jsp.JspException;
import org.jboss.seam.ui.EntityConverter;

public class ConvertEntityTag extends javax.faces.webapp.ConverterELTag
{

  // Fields
 

  protected Converter createConverter() throws JspException
  {
    EntityConverter converter = (EntityConverter) FacesContext.getCurrentInstance().getApplication().createConverter("org.jboss.seam.ui.EntityConverter");
    _setProperties(converter);
    return converter;
  }

  // Support method to wire in attributes
  private void _setProperties(EntityConverter converter) throws JspException
  {
    FacesContext facesContext = FacesContext.getCurrentInstance();
  }

}
TOP

Related Classes of org.jboss.seam.ui.taglib.ConvertEntityTag

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.