Code snippet:
private void buildDisplay(ResourceBundle resource){
...
...
iDescLb = new JLabel(resource.getString("description"));
...
..
Properties files:
...
...
description = This is the program ... (a very long description)...
When the resource get this long string, it just messes my application. I'd like to be able to display multiple line of description. I was trying to put \n with hope to have a new line..no luck.
Any helps, thanks.