Make decorator classes serializable, bug 18815
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/collections/trunk@131768 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
3bdfa558f2
commit
e43b667815
|
@ -18,7 +18,8 @@
|
||||||
<center><h2>RELEASE NOTES: COLLECTIONS 3.1</h2></center>
|
<center><h2>RELEASE NOTES: COLLECTIONS 3.1</h2></center>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
This release focusses on bug fixes and minor enhancements.
|
This release adds a few new classes and fixes a number of bugs.
|
||||||
|
This release is binary compatible with release 2.1.1.
|
||||||
No deprecations have occurred.
|
No deprecations have occurred.
|
||||||
|
|
||||||
<hr />
|
<hr />
|
||||||
|
@ -41,6 +42,7 @@ No deprecations have occurred.
|
||||||
<li>Empty*Iterator - Iterators over empty collections</li>
|
<li>Empty*Iterator - Iterators over empty collections</li>
|
||||||
<li>TransformedPredicate - A predicate where the input object is transformed [26946]</li>
|
<li>TransformedPredicate - A predicate where the input object is transformed [26946]</li>
|
||||||
<li>PredicateDecorator - An interface to provide a uniform interface to the decorated predicates</li>
|
<li>PredicateDecorator - An interface to provide a uniform interface to the decorated predicates</li>
|
||||||
|
<li>AbstractSerializable*Decorator - Abstract classes for decorators that are Serializable</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<center><h3>ENHANCEMENTS</h3></center>
|
<center><h3>ENHANCEMENTS</h3></center>
|
||||||
|
@ -66,15 +68,20 @@ No deprecations have occurred.
|
||||||
<h4>Made Serializable</h4>
|
<h4>Made Serializable</h4>
|
||||||
<ul>
|
<ul>
|
||||||
<li>Fast3Map [27946]</li>
|
<li>Fast3Map [27946]</li>
|
||||||
<li>FixedSizeMap/SortedMap [18815]</li>
|
<li>ReferenceMap</li>
|
||||||
<li>LazyMap/SortedMap [18815]</li>
|
<li>UnboundedFifoBuffer</li>
|
||||||
<li>ReferenceMap [18815]</li>
|
<li>BoundedFifoBuffer</li>
|
||||||
<li>ListOrderedMap [18815]</li>
|
<li>CircularFifoBuffer</li>
|
||||||
<li>PredicatedMap/SortedMap [18815]</li>
|
|
||||||
<li>TransformedMap/SortedMap [18815]</li>
|
|
||||||
<li>TypedMap/SortedMap [18815]</li>
|
|
||||||
<li>UnmodifiableMap/SortedMap/OrderedMap [18815]</li>
|
|
||||||
<li>TiedMapEntry</li>
|
<li>TiedMapEntry</li>
|
||||||
|
<li>FixedSize* [18815]</li>
|
||||||
|
<li>Predicated* [18815]</li>
|
||||||
|
<li>Synchronized* [18815]</li>
|
||||||
|
<li>Transformed* [18815]</li>
|
||||||
|
<li>Typed* [18815]</li>
|
||||||
|
<li>Unmodifiable* [18815]</li>
|
||||||
|
<li>Lazy* [18815]</li>
|
||||||
|
<li>ListOrdered* [18815]</li>
|
||||||
|
<li>SetUniqueList [18815]</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<center><h3>BUG FIXES</h3></center>
|
<center><h3>BUG FIXES</h3></center>
|
||||||
|
|
Loading…
Reference in New Issue