summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxue <>2006-04-04 04:20:05 +0000
committerxue <>2006-04-04 04:20:05 +0000
commit26636c9f8358aa93f996c498347840866ae5e714 (patch)
treec6b338961faf74238f2ad69cd7bfb474e84e5027
parent66843b23960e17991db0b4f7b01487063b2234bc (diff)
changed Prefix to KeyPrefix.
-rw-r--r--framework/Caching/TCache.php6
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 &copy; 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;
}