|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.jgoodies.binding.util.LoggingUtils
public final class LoggingUtils
Assists in logging changes in bound bean properties.
Logger
Method Summary | |
---|---|
static void |
logPropertyChanges(Object bean)
Registers a PropertyChangeListener with the specified bean that logs all PropertyChangeEvents fired by this bean using the default Logger and default log level. |
static void |
logPropertyChanges(Object bean,
Logger logger)
Registers a PropertyChangeListener with the specified bean, which logs all PropertyChangeEvents fired by the given bean using the specified Logger and the default log level. |
static void |
logPropertyChanges(Object bean,
Logger logger,
Level level)
Registers a PropertyChangeListener with the specified bean, which logs all PropertyChangeEvents fired by the given bean using the specified Logger and log level. |
static void |
logPropertyChanges(Object bean,
String propertyName)
Registers a named PropertyChangeListener with the specified bean, which logs all PropertyChangeEvents of the given property using the default Logger and default log level. |
static void |
logPropertyChanges(Object bean,
String propertyName,
Logger logger)
Registers a named PropertyChangeListener with the specified bean, which logs all PropertyChangeEvents of the given property using the specified Logger and the default log level. |
static void |
logPropertyChanges(Object bean,
String propertyName,
Logger logger,
Level level)
Registers a named PropertyChangeListener with the specified bean, which logs all PropertyChangeEvents of the given property, Logger, and log level. |
static void |
setDefaultLevel(Level level)
Sets the default log level to be used when logging PropertyChangeEvents. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method Detail |
---|
public static void setDefaultLevel(Level level)
Level.FINE
.
level
- the default level to be used if no custom level
has been provided
NullPointerException
- if the new defaultLevel is nullpublic static void logPropertyChanges(Object bean)
bean
- the bean to log PropertyChangeEvents from
NullPointerException
- if the bean is nullpublic static void logPropertyChanges(Object bean, Logger logger)
bean
- the bean to log PropertyChangeEvents fromlogger
- the Logger to be used to log PropertyChangeEvents
NullPointerException
- if the bean or logger is nullpublic static void logPropertyChanges(Object bean, Logger logger, Level level)
bean
- the bean to log PropertyChangeEvents fromlogger
- the Logger to be used to log PropertyChangeEventslevel
- the log level
NullPointerException
- if the bean, logger, or level is nullpublic static void logPropertyChanges(Object bean, String propertyName)
bean
- the bean to log PropertyChangeEvents frompropertyName
- the name of the property which PropertyChangeEvents
should be logged
NullPointerException
- if the bean or propertyName is nullpublic static void logPropertyChanges(Object bean, String propertyName, Logger logger)
bean
- the bean to log PropertyChangeEvents frompropertyName
- the name of the property which PropertyChangeEvents
should be loggedlogger
- the Logger to be used to log PropertyChangeEvents
NullPointerException
- if the bean, propertyName, or logger is nullpublic static void logPropertyChanges(Object bean, String propertyName, Logger logger, Level level)
bean
- the bean to log PropertyChangeEvents frompropertyName
- the name of the property which PropertyChangeEvents
should be loggedlogger
- the Logger to be used to log PropertyChangeEventslevel
- the log level
NullPointerException
- if the bean, propertyName, logger,
or level is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |