diff options
author | knut <> | 2006-02-02 18:10:17 +0000 |
---|---|---|
committer | knut <> | 2006-02-02 18:10:17 +0000 |
commit | 6b3c986a0a4634335b58ddf83a34032b5b783fce (patch) | |
tree | fffc7e9c8e6a266cf7d16c9db64ee2f57c0e776c /framework/Web/UI/THtmlWriter.php | |
parent | e1ffc982a948fe3d4e46465dc11a633ee37dc03c (diff) |
added missing page level and class level docblocks
Diffstat (limited to 'framework/Web/UI/THtmlWriter.php')
-rw-r--r-- | framework/Web/UI/THtmlWriter.php | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/framework/Web/UI/THtmlWriter.php b/framework/Web/UI/THtmlWriter.php index abfc666c..dc867b77 100644 --- a/framework/Web/UI/THtmlWriter.php +++ b/framework/Web/UI/THtmlWriter.php @@ -1,9 +1,27 @@ <?php
+/**
+ * THtmlWriter class file
+ *
+ * @author Qiang Xue <qiang.xue@gmail.com>
+ * @link http://www.pradosoft.com/
+ * @copyright Copyright © 2005 PradoSoft
+ * @license http://www.pradosoft.com/license/
+ * @version $Revision: $ $Date: $
+ * @package System.Web.UI
+ */
// todo: test if an attribute is a url
// keep nonclosing tag only
// add more utility methods (e.g. render....)
// implment encoding (for text and url)
+/**
+ * THtmlWriter class
+ *
+ * @author Qiang Xue <qiang.xue@gmail.com>
+ * @version $Revision: $ $Date: $
+ * @package System.Web.UI
+ * @since 3.0
+ */
class THtmlWriter extends TComponent implements ITextWriter
{
const TAG_INLINE=0;
|