cClassName; } function setName($name) { $this->name = $name; } function getName() { return $this->name; } function setFormName($name) { $this->form_name = $name; } function getFormName() { return $this->form_name; } function setValue($value) { $this->value = $value;} function getValue() { return $this->value; } function setValueSafe($value) { $this->value = $value;} function getValueSafe() { return $this->value; } function setId($id) { $this->id = $id; } function getId() { return $this->id; } 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 setLocalization($i18n) { $this->mI18n = $i18n; } function toStringControl() { return ""; } function toStringLabel() { return ""; } function toArray() { return array( "label"=>$this->toStringLabel(), "control"=>$this->toStringControl() ); } }