Uses of Class
java.awt.Font

Packages that use Font
java.awt   
 

Uses of Font in java.awt
 

Fields in java.awt declared as Font
(package private)  Font Component.font
          The font used by this component.
(package private)  Font Component.peerFont
          The font which the peer is currently using.
(package private)  Font MenuComponent.font
          The Menu Components Font.
protected  Font FontMetrics.font
          The actual Font from which the font metrics are created.
 

Methods in java.awt that return Font
 Font Component.getFont()
          Gets the font of this component.
(package private)  Font Component.getFont_NoClientCode()
           
abstract  Font[] GraphicsEnvironment.getAllFonts()
          Returns an array containing a one-point size instance of all fonts available in this GraphicsEnvironment.
 Font MenuComponent.getFont()
          Gets the font used for this menu component.
(package private)  Font MenuComponent.getFont_NoClientCode()
           
abstract  Font Graphics.getFont()
          Gets the current font.
 Font FontMetrics.getFont()
          Gets the Font described by this FontMetrics object.
 Font MenuContainer.getFont()
           
static Font Font.getFont(Map attributes)
          Returns a Font appropriate to this attribute set.
static Font Font.getFont(String nm)
          Returns a Font object from the system properties list.
static Font Font.decode(String str)
          Returns the Font that the str argument describes.
static Font Font.getFont(String nm, Font font)
          Gets the specified Font from the system properties list.
 Font Font.deriveFont(int style, float size)
          Creates a new Font object by replicating this Font object and applying a new style and size.
 Font Font.deriveFont(int style, java.awt.geom.AffineTransform trans)
          Creates a new Font object by replicating this Font object and applying a new style and transform.
 Font Font.deriveFont(float size)
          Creates a new Font object by replicating the current Font object and applying a new size to it.
 Font Font.deriveFont(java.awt.geom.AffineTransform trans)
          Creates a new Font object by replicating the current Font object and applying a new transform to it.
 Font Font.deriveFont(int style)
          Creates a new Font object by replicating the current Font object and applying a new style to it.
 Font Font.deriveFont(Map attributes)
          Creates a new Font object by replicating the current Font object and applying a new set of font attributes to it.
 

Methods in java.awt with parameters of type Font
 void Component.setFont(Font f)
          Sets the font of this component.
 FontMetrics Component.getFontMetrics(Font font)
          Gets the font metrics for the specified font.
 void Container.setFont(Font f)
          Sets the font of this container.
 void MenuComponent.setFont(Font f)
          Sets the font to be used for this menu component to the specified font.
abstract  void Graphics.setFont(Font font)
          Sets this graphics context's font to the specified font.
abstract  FontMetrics Graphics.getFontMetrics(Font f)
          Gets the font metrics for the specified font.
abstract  FontMetrics Toolkit.getFontMetrics(Font font)
          Deprecated. This returns integer metrics for the default screen.
 FontMetrics LightweightPeer.getFontMetrics(Font font)
           
 void LightweightPeer.setFont(Font f)
           
static Font Font.getFont(String nm, Font font)
          Gets the specified Font from the system properties list.
 

Constructors in java.awt with parameters of type Font
FontMetrics.FontMetrics(Font font)
          Creates a new FontMetrics object for finding out height and width information about the specified Font and specific character glyphs in that Font.
Font.FontLineMetrics.Font.FontLineMetrics()