com.smartgwt.client.widgets.form.validator
Class IntegerRangeValidator

java.lang.Object
  extended by com.smartgwt.client.core.JsObject
      extended by com.smartgwt.client.core.DataClass
          extended by com.smartgwt.client.widgets.form.validator.Validator
              extended by com.smartgwt.client.widgets.form.validator.IntegerRangeValidator

public class IntegerRangeValidator
extends Validator

Tests whether the value for this field is a whole number within the range specified. The max and min properties on the validator are used to determine the acceptable range..


Field Summary
 
Fields inherited from class com.smartgwt.client.core.JsObject
jsObj
 
Constructor Summary
IntegerRangeValidator()
           
 
Method Summary
 int getMax()
          Return the max.
 int getMin()
          Return the min.
 void setMax(int max)
          Set the max.
 void setMin(int min)
          Set the min.
 
Methods inherited from class com.smartgwt.client.widgets.form.validator.Validator
getClientOnly, getOrCreateRef, getStopIfFalse, setClientOnly, setErrorMessage, setStopIfFalse
 
Methods inherited from class com.smartgwt.client.core.DataClass
doAddHandler, fireEvent, getAttribute, getAttributeAsBoolean, getAttributeAsDate, getAttributeAsDouble, getAttributeAsFloat, getAttributeAsInt, getAttributeAsIntArray, getAttributeAsJavaScriptObject, getAttributeAsMap, getAttributeAsObject, getAttributeAsString, getAttributeAsStringArray, getAttributes, getHandlerCount, getJsObj, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute
 
Methods inherited from class com.smartgwt.client.core.JsObject
isCreated, setJsObj
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

IntegerRangeValidator

public IntegerRangeValidator()
Method Detail

setMin

public void setMin(int min)
Set the min.

Parameters:
min - the min

getMin

public int getMin()
Return the min.

Returns:
the min

setMax

public void setMax(int max)
Set the max.

Parameters:
max - the max

getMax

public int getMax()
Return the max.

Returns:
the max