I was trying Geertjan's series about CRUD and capabilities, it seems working, but I have few problems. One of them is automatically refreshing ExplorerManager (BeanTreeView or OutlineView...) after deleting a record.
I have got
class ChapRootNodeChildFactory extends ChildFactory<Chapters> implements NodeListener
(Chapters is for now databse entity class, which I use instead of the Trip in the series mentioned above)
It has of course:
@Override
public void nodeDestroyed(NodeEvent ne) {
refresh(true);
}
But the code never gets here (I set there breakpoint, but in debug, it never stops here).
I have also:
public final class ChapterNode extends AbstractNode
which has:
@Override
public void destroy() throws IOException {
....
fireNodeDestroyed();
}
The program goes through it, deletes the record in db and removes entity instance from collection of Chapters. But the fireNodeDestroyed() seems doing nothing.
Both classes are in the same module, there are no warnings or errors even while running.