cClassName; } function setName($name) { $this->mName = $name; } function getName() { return $this->mName; } function setFormName($name) { $this->mFormName = $name; } function getFormName() { return $this->mFormName; } function setValue($value) { $this->mValue = $value;} function getValue() { return $this->mValue; } function setValueSafe($value) { $this->mValue = $value;} function getValueSafe() { return $this->mValue; } function setId($id) { $this->mId = $id; } function getId() { return $this->mId; } function setSize($value) { $this->mSize = $value; } function getSize() { return $this->mSize; } function setLabel($label) { $this->mLabel = $label; } function getLabel() { return $this->mLabel; } function setMaxLength($value) { $this->mMaxLength = $value; } function getMaxLength() { return $this->mMaxLength; } function setTabindex($value) { $this->mTabindex = $value; } function getTabindex() { return $this->mTabindex; } function setAccesskey($value) { $this->mAccesskey = $value; } function getAccesskey() { return $this->mAccesskey; } function setStyle($value) { $this->mStyle = $value; } function getStyle() { return $this->mStyle; } function setRenderable($flag) { $this->mRenderable = $flag; } function isRenderable() { return $this->mRenderable; } function setEnable($flag) { $this->mEnabled = $flag; } function isEnable() { return $this->mEnabled; } function setOnChange($str) { $this->mOnChange = $str; } function setOnClick($str) { $this->mOnClick = $str; } function setOnSelect($str) { $this->mOnSelect = $str; } function setOnBlue($str) { $this->mOnBlur = $str; } function setOnKeyPress($str){ $this->mOnKeyPress = $str; } function setLocalization($i18n) { $this->mI18n = $i18n; } function toStringControl() { return ""; } function toStringLabel() { return ""; } function toArray() { return array( "label"=>$this->toStringLabel(), "control"=>$this->toStringControl() ); } } ?>