If you’re loocking for Javas UIDefaults, use the UIManager class. This snippet gives you all installed UIDefaults:
UIDefaults defaults = UIManager.getDefaults(); for(Enumeration e = defaults.keys(); e.hasMoreElements(); ){ String key = e.nextElement().toString(); System.out.println(key + " = " + defaults.get(key)); } |
No comments yet
Post a Comment