Searched refs:LazyValue (Results 1 - 16 of 16) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/plaf/metal/
H A DOceanTheme.java203 new UIDefaults.LazyValue() {
211 new UIDefaults.LazyValue() {
219 new UIDefaults.LazyValue() {
230 new UIDefaults.LazyValue() {
238 new UIDefaults.LazyValue() {
292 new UIDefaults.LazyValue() {
458 return (Icon)((UIDefaults.LazyValue)res).createValue(table);
H A DMetalLookAndFeel.java2183 private static class MetalLazyValue implements UIDefaults.LazyValue {
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/motif/
H A DMotifLookAndFeel.java261 Object menuItemCheckIcon = new UIDefaults.LazyValue() {
267 Object menuItemArrowIcon = new UIDefaults.LazyValue() {
273 Object menuArrowIcon = new UIDefaults.LazyValue() {
279 Object checkBoxIcon = new UIDefaults.LazyValue() {
285 Object radioButtonIcon = new UIDefaults.LazyValue() {
291 Object unselectedTabBackground = new UIDefaults.LazyValue() {
300 Object unselectedTabForeground = new UIDefaults.LazyValue() {
309 Object unselectedTabShadow = new UIDefaults.LazyValue() {
319 Object unselectedTabHighlight = new UIDefaults.LazyValue() {
468 Object treeLeafIcon = new UIDefaults.LazyValue() {
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/windows/
H A DDesktopProperty.java149 * UIManager.LazyValue method, returns the value from the desktop
232 else if (value instanceof UIDefaults.LazyValue) {
233 value = ((UIDefaults.LazyValue)value).createValue(null);
H A DWindowsInternalFrameTitlePane.java493 * @params objects an array of Icon or UIDefaults.LazyValue
501 if (objects[i] instanceof UIDefaults.LazyValue) {
502 icons[i] = (Icon)((UIDefaults.LazyValue)objects[i]).createValue(null);
H A DWindowsLookAndFeel.java855 // The constructor takes one arg: an array of UIDefaults.LazyValue
2123 private static class LazyWindowsIcon implements UIDefaults.LazyValue {
2183 UIDefaults.LazyValue fallback = (UIDefaults.LazyValue)
2379 if (value instanceof UIDefaults.LazyValue) {
2380 value = ((UIDefaults.LazyValue)value).createValue(table);
/openjdk7/jdk/src/share/classes/javax/swing/
H A DUIDefaults.java137 * <code>UIDefaults.LazyValue</code> then the real
138 * value is computed with <code>LazyValue.createValue()</code>,
154 * @see LazyValue
177 !(value instanceof LazyValue)) {
181 /* If the LazyValue for key is being constructed by another
183 * the lock and construct the ActiveValue or the LazyValue.
201 else if (value instanceof LazyValue) {
210 * a LazyValue or an ActiveValue.
212 if (value instanceof LazyValue) {
214 /* If an exception is thrown we'll just put the LazyValue
953 public interface LazyValue { interface in class:UIDefaults
[all...]
/openjdk7/jdk/src/share/classes/sun/swing/
H A DSwingLazyValue.java42 public class SwingLazyValue implements UIDefaults.LazyValue {
H A DSwingUtilities2.java1364 * Utility method that creates a <code>UIDefaults.LazyValue</code> that
1384 return new UIDefaults.LazyValue() {
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaKeyBindings.java32 import javax.swing.UIDefaults.LazyValue;
469 static class LateBoundInputMap implements LazyValue, BindingsProvider {
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthStyle.java722 if (value instanceof UIDefaults.LazyValue) {
723 value = ((UIDefaults.LazyValue)value).createValue(null);
/openjdk7/jdk/src/share/classes/sun/swing/plaf/synth/
H A DDefaultSynthStyle.java420 if (value instanceof UIDefaults.LazyValue) {
424 value = ((UIDefaults.LazyValue)value).createValue(null);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/nimbus/
H A DNimbusStyle.java468 if (p instanceof UIDefaults.LazyValue) {
469 p = ((UIDefaults.LazyValue)p).createValue(UIManager.getDefaults());
H A DDefaults.template361 * LazyPainter is a LazyValue class. It will create the
365 private static final class LazyPainter implements UIDefaults.LazyValue {
432 * manages a lot more information about the style. It is less of a LazyValue
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/gtk/
H A DGTKLookAndFeel.java530 class FontLazyValue implements UIDefaults.LazyValue {
1190 "TitledBorder.border", new UIDefaults.LazyValue() {
H A DGTKStyle.java1071 static class GTKLazyValue implements UIDefaults.LazyValue {

Completed in 76 milliseconds