javax.faces.validator
Class DoubleRangeValidator

java.lang.Object
  extended by javax.faces.validator.DoubleRangeValidator
All Implemented Interfaces:
EventListener, StateHolder, Validator

@JSFValidator(name="f:validateDoubleRange",
              bodyContent="empty",
              tagClass="org.apache.myfaces.taglib.core.ValidateDoubleRangeTag")
@JSFJspProperty(name="binding",
                returnType="javax.faces.validator.DoubleRangeValidator",
                longDesc="A ValueExpression that evaluates to a DoubleRangeValidator.")
public class DoubleRangeValidator
extends Object
implements Validator, StateHolder

Creates a validator and associateds it with the nearest parent UIComponent. When invoked, the validator ensures that values are valid doubles that lie within the minimum and maximum values specified. Commonly associated with a h:inputText entity. Unless otherwise specified, all attributes accept static values or EL expressions. see Javadoc of JSF Specification

Version:
$Revision: 693358 $ $Date: 2008-09-08 22:54:29 -0500 (Mon, 08 Sep 2008) $
Author:
Manfred Geiler (latest modification by $Author: lu4242 $), Thomas Spiegl

Field Summary
static String MAXIMUM_MESSAGE_ID
           
static String MINIMUM_MESSAGE_ID
           
static String NOT_IN_RANGE_MESSAGE_ID
           
static String TYPE_MESSAGE_ID
           
static String VALIDATOR_ID
           
 
Constructor Summary
DoubleRangeValidator()
           
DoubleRangeValidator(double maximum)
           
DoubleRangeValidator(double maximum, double minimum)
           
 
Method Summary
 boolean equals(Object o)
           
 double getMaximum()
          The largest value that should be considered valid.
 double getMinimum()
          The smallest value that should be considered valid.
 boolean isTransient()
           
 void restoreState(FacesContext context, Object state)
           
 Object saveState(FacesContext context)
           
 void setMaximum(double maximum)
           
 void setMinimum(double minimum)
           
 void setTransient(boolean transientValue)
           
 void validate(FacesContext facesContext, UIComponent uiComponent, Object value)
           
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

VALIDATOR_ID

public static final String VALIDATOR_ID
See Also:
Constant Field Values

MAXIMUM_MESSAGE_ID

public static final String MAXIMUM_MESSAGE_ID
See Also:
Constant Field Values

MINIMUM_MESSAGE_ID

public static final String MINIMUM_MESSAGE_ID
See Also:
Constant Field Values

TYPE_MESSAGE_ID

public static final String TYPE_MESSAGE_ID
See Also:
Constant Field Values

NOT_IN_RANGE_MESSAGE_ID

public static final String NOT_IN_RANGE_MESSAGE_ID
See Also:
Constant Field Values
Constructor Detail

DoubleRangeValidator

public DoubleRangeValidator()

DoubleRangeValidator

public DoubleRangeValidator(double maximum)

DoubleRangeValidator

public DoubleRangeValidator(double maximum,
                            double minimum)
Method Detail

validate

public void validate(FacesContext facesContext,
                     UIComponent uiComponent,
                     Object value)
              throws ValidatorException
Specified by:
validate in interface Validator
Throws:
ValidatorException

getMaximum

@JSFProperty
public double getMaximum()
The largest value that should be considered valid.


setMaximum

public void setMaximum(double maximum)

getMinimum

@JSFProperty
public double getMinimum()
The smallest value that should be considered valid.


setMinimum

public void setMinimum(double minimum)

saveState

public Object saveState(FacesContext context)
Specified by:
saveState in interface StateHolder

restoreState

public void restoreState(FacesContext context,
                         Object state)
Specified by:
restoreState in interface StateHolder

isTransient

public boolean isTransient()
Specified by:
isTransient in interface StateHolder

setTransient

public void setTransient(boolean transientValue)
Specified by:
setTransient in interface StateHolder

equals

public boolean equals(Object o)
Overrides:
equals in class Object


Copyright © 2012 The Apache Software Foundation. All Rights Reserved.