diff options
Diffstat (limited to 'tests/FunctionalTests/protected/pages/UI/LabeledTextBox.php')
-rw-r--r-- | tests/FunctionalTests/protected/pages/UI/LabeledTextBox.php | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/tests/FunctionalTests/protected/pages/UI/LabeledTextBox.php b/tests/FunctionalTests/protected/pages/UI/LabeledTextBox.php new file mode 100644 index 00000000..7cebc483 --- /dev/null +++ b/tests/FunctionalTests/protected/pages/UI/LabeledTextBox.php @@ -0,0 +1,24 @@ +<?php
+
+/**
+ * LabeledTextBox
+ *
+ * @author Wei Zhuo <weizhuo[at]gmail[dot]com>
+ * @version $Revision: $ $Date: $
+ * @package System.Web.UI.WebControls
+ * @since 3.0
+ */
+class LabeledTextBox extends TTemplateControl
+{
+ public function getTextBox()
+ {
+ return $this->textbox;
+ }
+
+ public function getLabel()
+ {
+ return $this->label;
+ }
+}
+
+?>
\ No newline at end of file |