00001 <?php
00002
00007 class XFormsControlItem extends SObject
00008 {
00009 protected $label;
00010 protected $value;
00011
00020 public function setLabel($l) {
00021 $this->label = $l;
00022 }
00023
00032 public function setValue($v) {
00033 $this->value = $v;
00034 }
00035
00043 public function getLabel() {
00044 return $this->label;
00045 }
00046
00054 public function getValue() {
00055 return $this->value;
00056 }
00057
00065 public function getViewLabel() {
00066 if ($this->label == '') return $this->value;
00067 return $this->label;
00068 }
00069
00077 public function getViewValue() {
00078 if ($this->value == '') return $this->label;
00079 return $this->value;
00080 }
00081 }
00082
00083 ?>