diff options
author | xue <> | 2006-01-21 15:16:28 +0000 |
---|---|---|
committer | xue <> | 2006-01-21 15:16:28 +0000 |
commit | adb9a7864e6fce08426af0b41bbc726388e296a7 (patch) | |
tree | 27dbe974265c776405d1a520219bd5bfc8b88882 /framework/TComponent.php | |
parent | c5e3052cdab7d0d8d86ddd272a906e850e0bc90a (diff) |
Diffstat (limited to 'framework/TComponent.php')
-rw-r--r-- | framework/TComponent.php | 6 |
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);
}
|