|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Deprecated Interfaces | |
|---|---|
| org.zkoss.util.ListX
As of release 5.0.8, it is not used and no longer maintained. The extended list interface. It provides methods to access the entry of each node in the list. Any class implementing this interface guarantees the binding between the entry and the element never changes even after removed. |
|
| org.zkoss.net.URLEncoder
As of release 5.0.5, for simple ZK core. A plugin to allow developer to customize the encoding of URL. By default, java.net.URLEncoder.encode(s, "UTF-8") is used.
If it is not what you want, you can customize it by implementing this
interface and specify it in the library property called
|
|
| Deprecated Classes | |
|---|---|
| org.zkoss.util.CheckableTreeArray
As of release 5.0.8, it is not used and no longer maintained. The checkable TreeArray. It extends TreeArray such that deriving classes could add validation when an element is added, removed or set. It is also useful to maintain the modification flag. |
|
| org.zkoss.util.TreeArray
As of release 5.0.8, it is not used and no longer maintained. Red-black tree based array implementation of List interface. Unlike LinkedList, the random access by index is as fast as log(n). Unlike ArrayList, the insertion is as fast as log(n). It is a great compromise between random and sequential access. In additions, it extends the features by also implementing ListX. The deriving class might override newEntry if it also extends RbEntry; override insert(RbEntry, RbEntry) for adding element; override delete(RbEntry) for removing element; clear() for clearing the whole list. Also, RbEntry.setElement might be overridden if the deriving class wants to do something when the set method is called. The iterator method is designed such that next() will proceed correctly even if getElement() throws an exception. The original algorithm is invented by Henri Chen. |
|
| Deprecated Constructors | |
|---|---|
| org.zkoss.util.MultiCache(int, int)
As of release 5.0.0, replaced with MultiCache.MultiCache(int) |
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||