Searched defs:deriveFont (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaFonts.java133 public Font deriveFont(final AffineTransform trans) { method in class:AquaFonts.DerivedUIResourceFont
134 return new DerivedUIResourceFont(super.deriveFont(trans));
137 public Font deriveFont(final float derivedSize) { method in class:AquaFonts.DerivedUIResourceFont
138 return new DerivedUIResourceFont(super.deriveFont(derivedSize));
141 public Font deriveFont(final int derivedStyle) { method in class:AquaFonts.DerivedUIResourceFont
142 return new DerivedUIResourceFont(super.deriveFont(derivedStyle));
145 public Font deriveFont(final int derivedStyle, final AffineTransform trans) { method in class:AquaFonts.DerivedUIResourceFont
146 return new DerivedUIResourceFont(super.deriveFont(derivedStyle, trans));
149 public Font deriveFont(final int derivedStyle, final float derivedSize) { method in class:AquaFonts.DerivedUIResourceFont
150 return new DerivedUIResourceFont(super.deriveFont(derivedStyl
153 public Font deriveFont(final Map<? extends Attribute, ?> attributes) { method in class:AquaFonts.DerivedUIResourceFont
[all...]
/openjdk7/jdk/src/share/classes/java/awt/
H A DFont.java161 * <code>deriveFont</code> methods in this class.
203 * <code>deriveFont</code> APIs ignore the FONT attribute, and it is
580 /* This constructor is used by deriveFont when attributes is null */
848 * This base font can then be used with the <code>deriveFont</code>
1007 * This base font can then be used with the <code>deriveFont</code>
1864 public Font deriveFont(int style, float size){ method in class:Font
1886 public Font deriveFont(int style, AffineTransform trans){ method in class:Font
1901 public Font deriveFont(float size){ method in class:Font
1920 public Font deriveFont(AffineTransform trans){ method in class:Font
1933 public Font deriveFont(in method in class:Font
1953 public Font deriveFont(Map<? extends Attribute, ?> attributes) { method in class:Font
[all...]

Completed in 226 milliseconds