org.apache.log4j.or

Class ThreadGroupRenderer

public class ThreadGroupRenderer extends Object implements ObjectRenderer

Render {@link ThreadGroup} objects in a format similar to the information output by the {@link ThreadGroup#list} method.

Since: 1.0

Author: Ceki Gülcü

Constructor Summary
ThreadGroupRenderer()
Method Summary
StringdoRender(Object o)
Render a {@link ThreadGroup} object similar to the way that the {@link ThreadGroup#list} method output information.

Constructor Detail

ThreadGroupRenderer

public ThreadGroupRenderer()

Method Detail

doRender

public String doRender(Object o)
Render a {@link ThreadGroup} object similar to the way that the {@link ThreadGroup#list} method output information.

The output of a simple program consisting of one main thread is:

     java.lang.ThreadGroup[name=main, maxpri=10]
         Thread=[main,5,false]
     

The boolean value in thread information is the value returned by {@link Thread#isDaemon}.

Copyright 2000-2005 Apache Software Foundation.