frysk.rsl
Class LogFactory

java.lang.Object
  extended by frysk.rsl.LogFactory

public final class LogFactory
extends Object

Create the specified logger.


Field Summary
(package private) static Node root
          The root Node; also serves as a single global lock.
 
Constructor Summary
LogFactory()
           
 
Method Summary
(package private) static int complete(Node node, String incomplete, List candidates)
           
static int complete(String incomplete, List candidates)
          Return completions.
static Log fine(Class klass)
           
static Log fine(String klass)
           
static Log finest(Class klass)
           
static Log finest(String klass)
           
static Node get(Class klass)
          Find the node corresponding to KLASS.
(package private) static Node get(Node root, Class klass)
           
(package private) static Node get(Node node, String path)
           
static Node get(String path)
          Find the Node corresponding to PATH.
static Log info(Class klass)
           
static Log info(String klass)
           
static Log warning(Class klass)
           
static Log warning(String klass)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

root

static final Node root
The root Node; also serves as a single global lock.

Constructor Detail

LogFactory

public LogFactory()
Method Detail

get

public static Node get(String path)
Find the Node corresponding to PATH.


warning

public static Log warning(String klass)

info

public static Log info(String klass)

fine

public static Log fine(String klass)

finest

public static Log finest(String klass)

get

static Node get(Node node,
                String path)

get

public static Node get(Class klass)
Find the node corresponding to KLASS.


warning

public static Log warning(Class klass)

info

public static Log info(Class klass)

fine

public static Log fine(Class klass)

finest

public static Log finest(Class klass)

get

static Node get(Node root,
                Class klass)

complete

public static int complete(String incomplete,
                           List candidates)
Return completions.


complete

static int complete(Node node,
                    String incomplete,
                    List candidates)