Ok, I decided to subclass my beanTreeView.
public final class LibraryViewerTopComponent extends TopComponent implements
ExplorerManager.Provider {
private final ExplorerManager explorerManager = new ExplorerManager();
private BeanTreeView beanTreeView;
private fin
I'm also curious about this.
It seems to me the API is somewhat incomplete, specifically in the async area.
We have no Future to listen to and react. So, it's all fire-and-forget when
often times you want to do something after the node has been created / shown.
In your case you control the bean
Hi there,
can someone tell me how to programmatically select a node in my beanTreeView
(backed up by an explorerManager) after being created in my data model? I tried
to do this in parent node, by adding a NodeListener like this:
parentNode.addNodeListener(new NodeAdapter() {