com.realtime.crossfire.jxclient.gui.log
Interface BufferListener


public interface BufferListener

Interface for listeners for changes of Buffer contents.


Method Summary
 void linesAdded(int lines)
          Some lines have been added to the buffer.
 void linesRemoved(java.util.List<Line> lines)
          Some lines have been removed from the buffer.
 void linesReplaced(int lines)
          Some lines have been replaced at the end of the buffer.
 

Method Detail

linesAdded

void linesAdded(int lines)
Some lines have been added to the buffer.

Parameters:
lines - The number of lines that have been added to the end of the buffer.

linesRemoved

void linesRemoved(@NotNull
                  java.util.List<Line> lines)
Some lines have been removed from the buffer.

Parameters:
lines - The lines that have been removed from the beginning of the buffer.

linesReplaced

void linesReplaced(int lines)
Some lines have been replaced at the end of the buffer.

Parameters:
lines - The number of lines that have been replaced at the end of the buffer.