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

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.LengthRangeValidator

public class LengthRangeValidator
extends Validator

This validator type applies to string values only. If the value is a string value validation will fail if the strings length falls outside the range specified by validator.max and validator.min. Note that non-string values will always pass validation by this validator type.


Field Summary
 
Fields inherited from class com.smartgwt.client.core.JsObject
jsObj
 
Constructor Summary
LengthRangeValidator()
           
 
Method Summary
 Integer getMax()
          Return the max.
 Integer getMin()
          Return the min.
 void setMax(Integer max)
          Set the max.
 void setMin(Integer min)
          Set the min.
 
Methods inherited from class com.smartgwt.client.widgets.form.validator.Validator
getClientOnly, getOrCreateRef, getServerCondition, getServerOnly, getStopIfFalse, setClientOnly, setErrorMessage, setServerCondition, setServerOnly, 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

LengthRangeValidator

public LengthRangeValidator()
Method Detail

setMin

public void setMin(Integer min)
Set the min.

Parameters:
min - the min

getMin

public Integer getMin()
Return the min.

Returns:
the min

setMax

public void setMax(Integer max)
Set the max.

Parameters:
max - the max

getMax

public Integer getMax()
Return the max.

Returns:
the max