QIntegerTextBox::__construct PHP Method

__construct() public method

public __construct ( $objParentObject, $strControlId = null )
    public function __construct($objParentObject, $strControlId = null)
    {
        try {
            parent::__construct($objParentObject, $strControlId);
        } catch (QCallerException $objExc) {
            $objExc->IncrementOffset();
            throw $objExc;
        }
        $this->strLabelForInvalid = QApplication::Translate('Invalid Integer');
        $this->strLabelForLess = QApplication::Translate('Value must be less than %s');
        $this->strLabelForGreater = QApplication::Translate('Value must be greater than %s');
    }