| public static interface javax.swing UIDefaults.ActiveValue
|
Java SE 6 |
getXXX(key) methods. Here's an example of
an ActiveValue that constructs a
DefaultListCellRenderer:
Object cellRendererActiveValue = new UIDefaults.ActiveValue() {
public Object createValue(UIDefaults table) {
return new DefaultListCellRenderer();
}
};
uiDefaultsTable.put("MyRenderer", cellRendererActiveValue);
| See also | get |
| Methods | |||||
|---|---|---|---|---|---|
| public Object | createValue(UIDefaults table) Creates the value retrieved from the UIDefaults table.
The object is created each time it is accessed.
| ||||
| About DocWeb · Bundles · Export · Export All | Top 10 · Statistics · Login |
| About Sun · Contact · Privacy · Terms of Use · Trademarks | Java SE 6 · Copyright © 1994-2009 Sun Microsystems, Inc.All rights reserved. Use is subject to license terms |
![]() |
![]() |
|