org.jboss.seam.faces.validation
Class InputElement<T>

java.lang.Object
  extended by org.jboss.seam.faces.validation.InputElement<T>
Type Parameters:
T - is the type of value the inputElement holds.
All Implemented Interfaces:
Serializable

@Veto
public class InputElement<T>
extends Object
implements Serializable

To be used in conjunction with <s:validateForm /> in Validators that should have their values fetched from a JSF form field.

Example of injection:

Author:
Jose Rodolfo freitas
See Also:
Serialized Form

Constructor Summary
InputElement(String id, String clientId, UIInput component)
           
 
Method Summary
 String getClientId()
           
 UIInput getComponent()
           
 String getId()
           
 T getValue()
           
 void setValue(Object value)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

InputElement

public InputElement(String id,
                    String clientId,
                    UIInput component)
Method Detail

getId

public String getId()

getClientId

public String getClientId()

getComponent

public UIInput getComponent()

getValue

public T getValue()

setValue

public void setValue(Object value)


Copyright © 2011 Seam Framework. All Rights Reserved.