Package org.jdesktop.swingx.plaf
Class LookAndFeelUtils
- java.lang.Object
-
- org.jdesktop.swingx.plaf.LookAndFeelUtils
-
public class LookAndFeelUtils extends Object
Collection of helpers. Could move to LookAndFeelAddon?- Author:
- Jeanette Winzenburg
-
-
Constructor Summary
Constructors Constructor Description LookAndFeelUtils()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Color
getAsNotUIResource(Color color)
Returns a Color based on the param which is not of type UIResource.static Font
getAsNotUIResource(Font font)
Returns a Font based on the param which is not of type UIResource.static Object
getUIOfType(ComponentUI ui, Class<?> klass)
Returns the ui that is of typeklass
, or null if one can not be found.
-
-
-
Method Detail
-
getUIOfType
public static Object getUIOfType(ComponentUI ui, Class<?> klass)
Returns the ui that is of typeklass
, or null if one can not be found.
-
getAsNotUIResource
public static Font getAsNotUIResource(Font font)
Returns a Font based on the param which is not of type UIResource.- Parameters:
font
- the base font- Returns:
- a font not of type UIResource, may be null.
-
-