diff options
author | xue <> | 2006-04-04 04:20:05 +0000 |
---|---|---|
committer | xue <> | 2006-04-04 04:20:05 +0000 |
commit | 26636c9f8358aa93f996c498347840866ae5e714 (patch) | |
tree | c6b338961faf74238f2ad69cd7bfb474e84e5027 /framework/Caching/TCache.php | |
parent | 66843b23960e17991db0b4f7b01487063b2234bc (diff) |
changed Prefix to KeyPrefix.
Diffstat (limited to 'framework/Caching/TCache.php')
-rw-r--r-- | framework/Caching/TCache.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/framework/Caching/TCache.php b/framework/Caching/TCache.php index 859180c9..e369f1df 100644 --- a/framework/Caching/TCache.php +++ b/framework/Caching/TCache.php @@ -7,7 +7,7 @@ * @copyright Copyright © 2005 PradoSoft
* @license http://www.pradosoft.com/license/
* @version $Revision: $ $Date: $
- * @package System.Web
+ * @package System.Caching
*/
/**
@@ -62,7 +62,7 @@ abstract class TCache extends TModule implements ICache * @return string a unique prefix for the keys of cached values.
* If it is not explicitly set, it will take the value of {@link TApplication::getUniqueID}.
*/
- public function getPrefix()
+ public function getKeyPrefix()
{
return $this->_prefix;
}
@@ -70,7 +70,7 @@ abstract class TCache extends TModule implements ICache /**
* @param string a unique prefix for the keys of cached values
*/
- public function setPrefix($value)
+ public function setKeyPrefix($value)
{
$this->_prefix=$value;
}
|