Uses of Class
com.realtime.crossfire.jxclient.gui.log.FontID

Packages that use FontID
com.realtime.crossfire.jxclient.gui.log   
 

Uses of FontID in com.realtime.crossfire.jxclient.gui.log
 

Fields in com.realtime.crossfire.jxclient.gui.log declared as FontID
private  FontID TextSegment.font
          The font to use.
private  FontID Parser.font
          The font to use.
 

Fields in com.realtime.crossfire.jxclient.gui.log with type parameters of type FontID
private static java.util.Map<java.lang.String,FontID> Parser.FONTS
          Maps font tag name to font instance.
 

Methods in com.realtime.crossfire.jxclient.gui.log that return FontID
static FontID FontID.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static FontID[] FontID.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in com.realtime.crossfire.jxclient.gui.log with parameters of type FontID
 void Line.addSegment(java.lang.String text, boolean bold, boolean italic, boolean underline, FontID font, java.awt.Color color)
          Appends a Segment to the end of the line.
 boolean TextSegment.matches(boolean bold, boolean italic, boolean underline, FontID font, java.awt.Color color)
          Returns whether this segment matches the given attributes.
 

Constructors in com.realtime.crossfire.jxclient.gui.log with parameters of type FontID
TextSegment(java.lang.String text, boolean bold, boolean italic, boolean underline, FontID font, java.awt.Color color)
          Create a new segment.