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

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

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

Fields in com.realtime.crossfire.jxclient.gui.log with type parameters of type Line
private  java.util.List<Line> Buffer.lines
          The lines in display order.
 

Methods in com.realtime.crossfire.jxclient.gui.log that return Line
 Line Buffer.getLine(int line)
          Return one Line by line index.
private  Line Parser.parseLine(java.lang.String text, java.awt.Color defaultColor)
          Parses one text line.
 

Methods in com.realtime.crossfire.jxclient.gui.log that return types with arguments of type Line
 java.util.Iterator<Line> Buffer.iterator()
          Return an Iterator for the lines in this buffer.
 java.util.ListIterator<Line> Buffer.listIterator(int line)
          Return a ListIterator for the lines in this buffer.
 

Methods in com.realtime.crossfire.jxclient.gui.log with parameters of type Line
 void Buffer.addLine(Line line)
          Append a Line to the end of the buffer.
private  int Buffer.calculateHeight(Line line)
          Determine the height of a Line in pixels.
private  void Parser.processText(java.lang.String text, Line line)
          Processes one text segment.
 void Buffer.replaceLine(Line line)
          Replace the last Line of this buffer.
 

Method parameters in com.realtime.crossfire.jxclient.gui.log with type arguments of type Line
 void RenderState.linesRemoved(Buffer buffer, java.util.Collection<Line> lines)
          Some lines have been removed from the buffer.
 void BufferListener.linesRemoved(java.util.List<Line> lines)
          Some lines have been removed from the buffer.