jTracer  1.03
Stack trace visualization tool
void org.libcsdbg.jtracer.TracePane.append ( String  ln,
String  tag 
)

Append a line of formatted text.

Parameters
[in]lnthe text
[in]tagthe formatting tag (style identifier)

Definition at line 208 of file TracePane.java.

209  {
210  try {
211  Document doc = getDocument();
212  int len = doc.getLength();
213  doc.insertString(len, ln, getStyle(tag));
214  setCaretPosition(len + ln.length());
215  }
216 
217  catch (Throwable t) {
218  Registry.debug(t);
219  }
220  }