Java: DefaultMutableTreeNode event when renaming

I created a class that extends DefaultMutableTreeNode. It has a variable "resource" of type "Resource", so that it can be associated with an object without this object affecting its name. The Resource class has a "name" variable that I would like to change when its corresponding DefaultMutableTreeNode is renamed, but I cannot find such events.

0
source share

Source: https://habr.com/ru/post/890011/


All Articles