Uses of Class
com.jstatcom.model.NumberRange

Packages that use NumberRange
com.jstatcom.component GUI components with general functionality. 
com.jstatcom.model Data model and Symbol Management systems. 
com.jstatcom.parser Various parsers generated by JavaCC. 
com.jstatcom.table Special tables for some data types. 
 

Uses of NumberRange in com.jstatcom.component
 

Methods in com.jstatcom.component that return NumberRange
 NumberRange NumSelector.getNumberRange()
          Gets the range that the input is checked against.
 NumberRange NumRangeSelector.getNumberRange()
          Gets the currently displayed number range.
 NumberRange NumRangeSelector.getOverallNumberRange()
          Gets the overall range that the range input is checked against.
 

Methods in com.jstatcom.component with parameters of type NumberRange
 void NumSelector.setNumberRange(NumberRange newNumberRange)
          Sets the range that the number input is checked against.
 void NumRangeSelector.setNumberRange(NumberRange newRange)
          Sets the currently displayed number range with checking whether it conforms to the specified overall range.
 void NumRangeSelector.setOverallNumberRange(NumberRange newNumberRange)
          Sets the overall range that the range input is checked against.
 

Uses of NumberRange in com.jstatcom.model
 

Methods in com.jstatcom.model that return NumberRange
 NumberRange NumberRange.defaultNumberRange()
          Finds a number range that is enclosed by this range.
static NumberRange NumberRange.valueOf(java.lang.String exp)
          Static initialized that creates a NumberRange from a string representation.
 

Methods in com.jstatcom.model with parameters of type NumberRange
 java.lang.String NumberRange.encloses(NumberRange numberRange)
          Tests whether a given range is completely enclosed within this range and returns a formatted message if not.
 

Uses of NumberRange in com.jstatcom.parser
 

Methods in com.jstatcom.parser that return NumberRange
 NumberRange NumberRangeParser.parseStringToRange(java.lang.String inputString)
          Reinitializes this engine and parses an input string.
 

Uses of NumberRange in com.jstatcom.table
 

Methods in com.jstatcom.table that return NumberRange
 NumberRange JSCNArrayTable.getNumberRange()
          Gets the number range to verify number input.
 

Methods in com.jstatcom.table with parameters of type NumberRange
 void JSCNArrayTable.setNumberRange(NumberRange range)
          Sets the number range to verify number input when cells are edited with the default editor set for this table.