jdk/src/share/classes/javax/swing/plaf/nimbus/Defaults.template
changeset 3093 3ae581eddd21
parent 2658 43e06bc950ec
child 3741 4021567cd4ca
child 3928 be186a33df9b
equal deleted inserted replaced
2956:931f209e57a9 3093:3ae581eddd21
   276      * <p>To use this class, create an instance with the key of the font in the
   276      * <p>To use this class, create an instance with the key of the font in the
   277      * UI defaults table from which to derive this font, along with a size
   277      * UI defaults table from which to derive this font, along with a size
   278      * offset (if any), and whether it is to be bold, italic, or left in its
   278      * offset (if any), and whether it is to be bold, italic, or left in its
   279      * default form.</p>
   279      * default form.</p>
   280      */
   280      */
   281     public static final class DerivedFont implements UIDefaults.ActiveValue {
   281     static final class DerivedFont implements UIDefaults.ActiveValue {
   282         private float sizeOffset;
   282         private float sizeOffset;
   283         private Boolean bold;
   283         private Boolean bold;
   284         private Boolean italic;
   284         private Boolean italic;
   285         private String parentKey;
   285         private String parentKey;
   286 
   286