equal
deleted
inserted
replaced
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 |