Lines Matching defs:table

44      * Load the SystemColors into the defaults table.  The keys
46 * the public fields in SystemColor. If the table is being
51 protected void initSystemColorDefaults(UIDefaults table) {
82 loadSystemColors(table, defaultSystemColors, true);
85 protected void initComponentDefaults(UIDefaults table) {
86 super.initComponentDefaults(table);
100 Color back = table.getColor("control");
105 table.getColor("controlShadow"),
106 table.getColor("controlLtHighlight"));
109 table.getColor("controlShadow"),
110 table.getColor("controlLtHighlight"));
115 table.getColor("control"),
116 table.getColor("activeCaptionBorder"));
264 "ScrollBar.foreground", table.get("control"),
268 "ScrollBar.thumbHighlight", table.get("controlHighlight") ,
269 "ScrollBar.thumbDarkShadow", table.get("controlDkShadow"),
270 "ScrollBar.thumbShadow", table.get("controlShadow"),
294 "ScrollPane.foreground", table.get("controlText"),
358 "TextField.inactiveForeground", table.get("textInactiveText"),
359 "TextField.selectionBackground", table.get("textHighlight"),
360 "TextField.selectionForeground", table.get("textHighlightText"),
361 "TextField.background", table.get("window"),
362 "TextField.foreground", table.get("textText"),
369 "PasswordField.inactiveForeground", table.get("textInactiveText"),
370 "PasswordField.selectionBackground", table.get("textHighlight"),
371 "PasswordField.selectionForeground", table.get("textHighlightText"),
372 "PasswordField.background", table.get("window"),
373 "PasswordField.foreground", table.get("textText"),
380 "TextArea.inactiveForeground", table.get("textInactiveText"),
381 "TextArea.selectionBackground", table.get("textHighlight"),
382 "TextArea.selectionForeground", table.get("textHighlightText"),
383 "TextArea.background", table.get("window"),
384 "TextArea.foreground", table.get("textText"),
390 table.putDefaults(defaults);