diff options
author | Joonas Lehtinen <joonas.lehtinen@itmill.com> | 2007-01-31 18:54:58 +0000 |
---|---|---|
committer | Joonas Lehtinen <joonas.lehtinen@itmill.com> | 2007-01-31 18:54:58 +0000 |
commit | 645545f63d8744677ee6159c19da5351be0e93d8 (patch) | |
tree | 9108f9fed5941d2cc5d277d6ac8c2d07154a2b5e /src/com/itmill/toolkit/ui/Tree.java | |
parent | fe5b627b76a56f2437c68e668e61e7c0c2a91012 (diff) | |
download | vaadin-framework-645545f63d8744677ee6159c19da5351be0e93d8.tar.gz vaadin-framework-645545f63d8744677ee6159c19da5351be0e93d8.zip |
Integrated filter select features. Fixed #41
svn changeset:393/svn branch:toolkit
Diffstat (limited to 'src/com/itmill/toolkit/ui/Tree.java')
-rw-r--r-- | src/com/itmill/toolkit/ui/Tree.java | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/com/itmill/toolkit/ui/Tree.java b/src/com/itmill/toolkit/ui/Tree.java index 5ca7983b25..cdb95d5ec2 100644 --- a/src/com/itmill/toolkit/ui/Tree.java +++ b/src/com/itmill/toolkit/ui/Tree.java @@ -759,5 +759,14 @@ public class Tree extends Select implements Container.Hierarchical, Action.Conta public void focus() throws UnsupportedOperationException { throw new UnsupportedOperationException(); } + + /** Tree does not support lazy options loading mode. + * Setting this true will throw UnsupportedOperationException. + */ + public void setLazyLoading(boolean useLazyLoading) { + if (useLazyLoading) + throw new UnsupportedOperationException("Lazy options loading is not supported by Tree."); + } + } |