Improved resource management

Means that the tool tip text can be modified directly?Do not need to rebuild jar?
If so, what method should I use it?

DockController controller = control.getController();
TextManager text = controller.getTexts();

text.put( Priority.CLIENT, id, string );```
where "id" is one of the identifiers from the "*.properties" files, and "string" is the new text to apply (can be null to revert to the original text).


Or you can load an entire ResourceBundle with help of the class "DefaultTextScheme" and the method "TextManager.setScheme".

Thanks.