setConstraint('timePattern', (string) $pattern); return $this; } /** * Retrieve time format pattern * * @return string|null */ public function getTimePattern() { return $this->getConstraint('timePattern'); } /** * Set clickableIncrement * * @param string $format * @return Zend_Dojo_Form_Element_NumberTextBox */ public function setClickableIncrement($format) { $format = (string) $format; $this->_validateIso8601($format); $this->setConstraint('clickableIncrement', $format); return $this; } /** * Retrieve clickableIncrement * * @return string|null */ public function getClickableIncrement() { return $this->getConstraint('clickableIncrement'); } /** * Set visibleIncrement * * @param string $format * @return Zend_Dojo_Form_Element_NumberTextBox */ public function setVisibleIncrement($format) { $format = (string) $format; $this->_validateIso8601($format); $this->setConstraint('visibleIncrement', $format); return $this; } /** * Retrieve visibleIncrement * * @return string|null */ public function getVisibleIncrement() { return $this->getConstraint('visibleIncrement'); } /** * Set visibleRange * * @param string $format * @return Zend_Dojo_Form_Element_NumberTextBox */ public function setVisibleRange($format) { $format = (string) $format; $this->_validateIso8601($format); $this->setConstraint('visibleRange', $format); return $this; } /** * Retrieve visibleRange * * @return string|null */ public function getVisibleRange() { return $this->getConstraint('visibleRange'); } }