Lines Matching refs:key

92     public static Object get(JComponent c, ComponentUI ui, String key) {
99 return UIManager.get(key, c.getLocale());
125 return lookup.getDefault(c, ui, key);
131 public static int getInt(JComponent c, ComponentUI ui, String key,
133 Object iValue = get(c, ui, key);
141 public static int getInt(JComponent c, ComponentUI ui, String key) {
142 return getInt(c, ui, key, -1);
145 public static Insets getInsets(JComponent c, ComponentUI ui, String key,
147 Object iValue = get(c, ui, key);
155 public static Insets getInsets(JComponent c, ComponentUI ui, String key) {
156 return getInsets(c, ui, key, null);
159 public static boolean getBoolean(JComponent c, ComponentUI ui, String key,
161 Object iValue = get(c, ui, key);
169 public static boolean getBoolean(JComponent c, ComponentUI ui, String key) {
170 return getBoolean(c, ui, key, false);
173 public static Color getColor(JComponent c, ComponentUI ui, String key,
175 Object iValue = get(c, ui, key);
183 public static Color getColor(JComponent c, ComponentUI ui, String key) {
184 return getColor(c, ui, key, null);
187 public static Icon getIcon(JComponent c, ComponentUI ui, String key,
189 Object iValue = get(c, ui, key);
196 public static Icon getIcon(JComponent c, ComponentUI ui, String key) {
197 return getIcon(c, ui, key, null);
200 public static Border getBorder(JComponent c, ComponentUI ui, String key,
202 Object iValue = get(c, ui, key);
209 public static Border getBorder(JComponent c, ComponentUI ui, String key) {
210 return getBorder(c, ui, key, null);
213 public Object getDefault(JComponent c, ComponentUI ui, String key) {
215 return UIManager.get(key, c.getLocale());