Uses of Class
org.peace_tools.generic.Log.LogLevel

Packages that use Log.LogLevel
org.peace_tools.generic Provides a generic set of application-independent classes for performing standard GUI operations. 
 

Uses of Log.LogLevel in org.peace_tools.generic
 

Fields in org.peace_tools.generic declared as Log.LogLevel
protected  Log.LogLevel Log.currentLogLevel
          The current log level at which log messages are being generated.
 

Methods in org.peace_tools.generic that return Log.LogLevel
static Log.LogLevel Log.decode(char code)
          Utility method to convert an encoded log level character (obtained via a call to the encode() method) to corresponding LogLevel enumeration value.
 Log.LogLevel Log.getLevel()
          Retrieves the current logging level.
static Log.LogLevel Log.LogLevel.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Log.LogLevel[] Log.LogLevel.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in org.peace_tools.generic with parameters of type Log.LogLevel
static char Log.encode(Log.LogLevel level)
          Utility method to convert a log level to a single character value.
static boolean UserLog.log(Log.LogLevel level, java.lang.String component, java.lang.String text)
          This method logs the specified message at the given level.
 void Log.setLevel(Log.LogLevel level)
          Sets the Logging level to the specified level.
 

Constructors in org.peace_tools.generic with parameters of type Log.LogLevel
Log(Log.LogLevel logLevel, java.lang.String fileName)
          A constructor for the Log.