org.apache.myfaces.shared_tomahawk.taglib
Class UIComponentELTagUtils
java.lang.Object
org.apache.myfaces.shared_tomahawk.taglib.UIComponentELTagUtils
public class UIComponentELTagUtils
- extends java.lang.Object
- Since:
- 1.2
- Version:
- $Revision: 673827 $ $Date: 2008-07-03 23:46:23 +0200 (Do, 03 Jul 2008) $
- Author:
- Manfred Geiler (latest modification by $Author: skitching $), Bruno Aranda (JSR-252)
Method Summary |
static void |
addActionListenerProperty(javax.faces.context.FacesContext context,
javax.faces.component.UIComponent component,
javax.el.MethodExpression actionListener)
|
static void |
addValidatorProperty(javax.faces.context.FacesContext context,
javax.faces.component.UIComponent component,
javax.el.MethodExpression validator)
|
static void |
addValueChangedListenerProperty(javax.faces.context.FacesContext context,
javax.faces.component.UIComponent component,
javax.el.MethodExpression valueChangedListener)
|
static java.lang.Object |
evaluateValueExpression(javax.el.ELContext elContext,
javax.el.ValueExpression valueExpression)
|
static java.lang.Boolean |
getBooleanValue(javax.el.ELContext elContext,
javax.el.ValueExpression valueExpression)
|
static java.lang.Integer |
getIntegerValue(javax.el.ELContext elContext,
javax.el.ValueExpression valueExpression)
|
static void |
setActionProperty(javax.faces.context.FacesContext context,
javax.faces.component.UIComponent component,
javax.el.MethodExpression action)
|
static void |
setBooleanProperty(javax.faces.component.UIComponent component,
java.lang.String propName,
javax.el.ValueExpression value)
|
static void |
setBooleanProperty(javax.faces.component.UIComponent component,
java.lang.String propName,
javax.el.ValueExpression value,
java.lang.Boolean defaultValue)
|
static void |
setConverterProperty(javax.faces.context.FacesContext context,
javax.faces.component.UIComponent component,
javax.el.ValueExpression value)
|
static void |
setIntegerProperty(javax.faces.component.UIComponent component,
java.lang.String propName,
javax.el.ValueExpression value)
|
static void |
setIntegerProperty(javax.faces.component.UIComponent component,
java.lang.String propName,
javax.el.ValueExpression value,
java.lang.Integer defaultValue)
|
static void |
setLongProperty(javax.faces.component.UIComponent component,
java.lang.String propName,
javax.el.ValueExpression value)
|
static void |
setLongProperty(javax.faces.component.UIComponent component,
java.lang.String propName,
javax.el.ValueExpression value,
java.lang.Long defaultValue)
|
static void |
setStringProperty(javax.faces.component.UIComponent component,
java.lang.String propName,
javax.el.ValueExpression value)
|
static void |
setStringProperty(javax.faces.component.UIComponent component,
java.lang.String propName,
javax.el.ValueExpression value,
java.lang.String defaultValue)
|
static void |
setValueBinding(javax.faces.context.FacesContext context,
javax.faces.component.UIComponent component,
java.lang.String propName,
javax.el.ValueExpression value)
|
static void |
setValueProperty(javax.faces.context.FacesContext context,
javax.faces.component.UIComponent component,
javax.el.ValueExpression value)
|
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
setIntegerProperty
public static void setIntegerProperty(javax.faces.component.UIComponent component,
java.lang.String propName,
javax.el.ValueExpression value)
- Since:
- 1.2
setIntegerProperty
public static void setIntegerProperty(javax.faces.component.UIComponent component,
java.lang.String propName,
javax.el.ValueExpression value,
java.lang.Integer defaultValue)
- Since:
- 1.2
setLongProperty
public static void setLongProperty(javax.faces.component.UIComponent component,
java.lang.String propName,
javax.el.ValueExpression value)
- Since:
- 1.2
setLongProperty
public static void setLongProperty(javax.faces.component.UIComponent component,
java.lang.String propName,
javax.el.ValueExpression value,
java.lang.Long defaultValue)
- Since:
- 1.2
setStringProperty
public static void setStringProperty(javax.faces.component.UIComponent component,
java.lang.String propName,
javax.el.ValueExpression value)
- Since:
- 1.2
setStringProperty
public static void setStringProperty(javax.faces.component.UIComponent component,
java.lang.String propName,
javax.el.ValueExpression value,
java.lang.String defaultValue)
- Since:
- 1.2
setBooleanProperty
public static void setBooleanProperty(javax.faces.component.UIComponent component,
java.lang.String propName,
javax.el.ValueExpression value)
- Since:
- 1.2
setBooleanProperty
public static void setBooleanProperty(javax.faces.component.UIComponent component,
java.lang.String propName,
javax.el.ValueExpression value,
java.lang.Boolean defaultValue)
- Since:
- 1.2
setValueProperty
public static void setValueProperty(javax.faces.context.FacesContext context,
javax.faces.component.UIComponent component,
javax.el.ValueExpression value)
- Since:
- 1.2
setConverterProperty
public static void setConverterProperty(javax.faces.context.FacesContext context,
javax.faces.component.UIComponent component,
javax.el.ValueExpression value)
- Since:
- 1.2
addValidatorProperty
public static void addValidatorProperty(javax.faces.context.FacesContext context,
javax.faces.component.UIComponent component,
javax.el.MethodExpression validator)
- Since:
- 1.2
setValueBinding
public static void setValueBinding(javax.faces.context.FacesContext context,
javax.faces.component.UIComponent component,
java.lang.String propName,
javax.el.ValueExpression value)
- Since:
- 1.2
setActionProperty
public static void setActionProperty(javax.faces.context.FacesContext context,
javax.faces.component.UIComponent component,
javax.el.MethodExpression action)
- Since:
- 1.2
addActionListenerProperty
public static void addActionListenerProperty(javax.faces.context.FacesContext context,
javax.faces.component.UIComponent component,
javax.el.MethodExpression actionListener)
- Since:
- 1.2
addValueChangedListenerProperty
public static void addValueChangedListenerProperty(javax.faces.context.FacesContext context,
javax.faces.component.UIComponent component,
javax.el.MethodExpression valueChangedListener)
- Since:
- 1.2
evaluateValueExpression
public static java.lang.Object evaluateValueExpression(javax.el.ELContext elContext,
javax.el.ValueExpression valueExpression)
- Since:
- 1.2
getBooleanValue
public static java.lang.Boolean getBooleanValue(javax.el.ELContext elContext,
javax.el.ValueExpression valueExpression)
- Since:
- 1.2
getIntegerValue
public static java.lang.Integer getIntegerValue(javax.el.ELContext elContext,
javax.el.ValueExpression valueExpression)
Copyright © 2011 Apache Software Foundation. All Rights Reserved.