Uses of Class
org.eclipse.datatools.connectivity.oda.util.logging.Level

Packages that use Level
org.eclipse.datatools.connectivity.oda.util.logging Provides a trace logging utility to an ODA runtime extension. 
 

Uses of Level in org.eclipse.datatools.connectivity.oda.util.logging
 

Fields in org.eclipse.datatools.connectivity.oda.util.logging declared as Level
static Level Level.ALL_LEVEL
          The constant indicating the log level ALL.
static Level Level.CONFIG_LEVEL
          The constant indicating the log level CONFIG.
static Level Level.FINE_LEVEL
          The constant indicating the log level FINE.
static Level Level.FINER_LEVEL
          The constant indicating the log level FINER.
static Level Level.FINEST_LEVEL
          The constant indicating the log level FINEST.
static Level Level.INFO_LEVEL
          The constant indicating the log level INFO.
static Level Level.OFF_LEVEL
          The constant indicating the log level OFF.
static Level Level.SEVERE_LEVEL
          The constant indicating the log level SEVERE.
static Level Level.WARNING_LEVEL
          The constant indicating the log level WARNING.
 

Methods in org.eclipse.datatools.connectivity.oda.util.logging that return Level
 Level Logger.getLevel()
          Get the associated log level.
 Level Handler.getLevel()
          Gets the Level associated with this Handler.
 Level LogRecord.getLevel()
          Gets the logging level.
 

Methods in org.eclipse.datatools.connectivity.oda.util.logging with parameters of type Level
 boolean Logger.isLoggable(Level level)
          Checks whether the specified level is loggable by this Logger.
 void Logger.log(Level level, java.lang.String message)
          Log a message at the specified level.
 void Logger.log(Level level, java.lang.Throwable thrown)
          Log a throwable at the specified level.
 void Logger.setLevel(Level level)
          Sets the level to associate with this Logger.
 void Handler.setLevel(Level level)
          Sets the Level for this Handler.
 void LogRecord.setLevel(Level level)
          Sets the logging level to the specified value.
 

Constructors in org.eclipse.datatools.connectivity.oda.util.logging with parameters of type Level
LogRecord(Level level, java.lang.String message)
          Creates a LogRecord instance with the specified log level and message.