var fDesc=new Array(); fDesc[0] = "The UIManager contains information about the default properties of each Swing component. This information is stored in the UIDefaults class in the form of key/value pairs. Each Look and Feel will have its own set of default properties. The UIManager can be used to make changes to these properties.

At times you may want to know what the default value of a property is for a specific component. You can use code like this to get the default font for a JTextField:

Font font = UIManager.getFont("TextField.font");

Other times you may want to change the default value of a property for a specific component. You can use code like this to change the default font for all JTextFields:

UIManager.put("TextField.font", new FontUIResource( yourFontHere ));"; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }