diff options
author | xue <> | 2006-01-05 03:56:16 +0000 |
---|---|---|
committer | xue <> | 2006-01-05 03:56:16 +0000 |
commit | c4279b69ac0f2fa30fdd661083cb753965ae2850 (patch) | |
tree | 98fb385528320b05f7428c05d07224d91e320d7b /framework/Web/UI/WebControls/TDataBoundControl.php | |
parent | 282e4c91d2f0e711d8344ede4fc3658dbc9e26bc (diff) |
Added documentation.
Diffstat (limited to 'framework/Web/UI/WebControls/TDataBoundControl.php')
-rw-r--r-- | framework/Web/UI/WebControls/TDataBoundControl.php | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/framework/Web/UI/WebControls/TDataBoundControl.php b/framework/Web/UI/WebControls/TDataBoundControl.php index 9eca4434..399013a2 100644 --- a/framework/Web/UI/WebControls/TDataBoundControl.php +++ b/framework/Web/UI/WebControls/TDataBoundControl.php @@ -1,6 +1,6 @@ <?php
/**
- * TBulletedList class file
+ * TDataBoundControl class file
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @link http://www.pradosoft.com/
@@ -11,14 +11,19 @@ */
/**
- * TBulletedList class
+ * TDataBoundControl class.
+ *
+ * TDataBoundControl is the based class for controls that need to populate
+ * data from data sources. It provides basic properties and methods that allow
+ * the derived controls to associate with data sources and retrieve data from them.
+ *
+ * TBC...
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @version $Revision: $ $Date: $
* @package System.Web.UI.WebControls
* @since 3.0
*/
-
abstract class TDataBoundControl extends TWebControl
{
private $_initialized=false;
|