summaryrefslogtreecommitdiff
path: root/framework/TComponent.php
diff options
context:
space:
mode:
authorxue <>2006-01-21 15:16:28 +0000
committerxue <>2006-01-21 15:16:28 +0000
commitadb9a7864e6fce08426af0b41bbc726388e296a7 (patch)
tree27dbe974265c776405d1a520219bd5bfc8b88882 /framework/TComponent.php
parentc5e3052cdab7d0d8d86ddd272a906e850e0bc90a (diff)
Diffstat (limited to 'framework/TComponent.php')
-rw-r--r--framework/TComponent.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/framework/TComponent.php b/framework/TComponent.php
index 0befc27f..aa060750 100644
--- a/framework/TComponent.php
+++ b/framework/TComponent.php
@@ -169,7 +169,7 @@ class TComponent
* @param string the property name
* @return boolean whether the property is defined
*/
- final public function hasProperty($name)
+ public function hasProperty($name)
{
return method_exists($this,'get'.$name) || method_exists($this,'set'.$name);
}
@@ -181,7 +181,7 @@ class TComponent
* @param string the property name
* @return boolean whether the property can be read
*/
- final public function canGetProperty($name)
+ public function canGetProperty($name)
{
return method_exists($this,'get'.$name);
}
@@ -193,7 +193,7 @@ class TComponent
* @param string the property name
* @return boolean whether the property can be written
*/
- final public function canSetProperty($name)
+ public function canSetProperty($name)
{
return method_exists($this,'set'.$name);
}