From adb9a7864e6fce08426af0b41bbc726388e296a7 Mon Sep 17 00:00:00 2001 From: xue <> Date: Sat, 21 Jan 2006 15:16:28 +0000 Subject: --- framework/TComponent.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'framework/TComponent.php') 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); } -- cgit v1.2.3