summaryrefslogtreecommitdiff
path: root/framework/Collections
diff options
context:
space:
mode:
authorxue <>2006-05-18 21:26:25 +0000
committerxue <>2006-05-18 21:26:25 +0000
commit1cd5380675aab9a2884845b6630091be2e857f69 (patch)
tree31b4a1c97b769cb1505b1ec0706fe3f2dee9e715 /framework/Collections
parent4945d1fb9856d92ab4dd9a0f65a11928f65f9b28 (diff)
Merge from 3.0 branch till 1082.
Diffstat (limited to 'framework/Collections')
-rw-r--r--framework/Collections/TList.php2
-rw-r--r--framework/Collections/TMap.php5
2 files changed, 1 insertions, 6 deletions
diff --git a/framework/Collections/TList.php b/framework/Collections/TList.php
index 244eab0f..5b27a02e 100644
--- a/framework/Collections/TList.php
+++ b/framework/Collections/TList.php
@@ -30,7 +30,7 @@
* to determine the number of items in the list.
*
* To extend TList by doing additional operations with each addition or removal
- * operations, override {@link insertAt()}, and {@link removeAt()}.
+ * operation, override {@link insertAt()}, and {@link removeAt()}.
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @version $Revision: $ $Date: $
diff --git a/framework/Collections/TMap.php b/framework/Collections/TMap.php
index 85da4f3c..28508e1d 100644
--- a/framework/Collections/TMap.php
+++ b/framework/Collections/TMap.php
@@ -28,11 +28,6 @@
* Note, count($map) will always return 1. You should use {@link getCount()}
* to determine the number of items in the map.
*
- * To extend TMap by doing additional operations with each added or removed item,
- * you can override {@link addedItem} and {@link removedItem}.
- * You can also override {@link canAddItem} and {@link canRemoveItem} to
- * control whether to add or remove a particular item.
- *
* @author Qiang Xue <qiang.xue@gmail.com>
* @version $Revision: $ $Date: $
* @package System.Collections