|
||||||||||
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(java.lang.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(java.lang.Object bean,
java.util.logging.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(java.lang.Object bean,
java.util.logging.Logger logger,
java.util.logging.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(java.lang.Object bean,
java.lang.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(java.lang.Object bean,
java.lang.String propertyName,
java.util.logging.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(java.lang.Object bean,
java.lang.String propertyName,
java.util.logging.Logger logger,
java.util.logging.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(java.util.logging.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(java.util.logging.Level level)
Level.FINE
.
level
- the default level to be used if no custom level
has been provided
java.lang.NullPointerException
- if the new defaultLevel is nullpublic static void logPropertyChanges(java.lang.Object bean)
bean
- the bean to log PropertyChangeEvents from
java.lang.NullPointerException
- if the bean is nullpublic static void logPropertyChanges(java.lang.Object bean, java.util.logging.Logger logger)
bean
- the bean to log PropertyChangeEvents fromlogger
- the Logger to be used to log PropertyChangeEvents
java.lang.NullPointerException
- if the bean or logger is nullpublic static void logPropertyChanges(java.lang.Object bean, java.util.logging.Logger logger, java.util.logging.Level level)
bean
- the bean to log PropertyChangeEvents fromlogger
- the Logger to be used to log PropertyChangeEventslevel
- the log level
java.lang.NullPointerException
- if the bean, logger, or level is nullpublic static void logPropertyChanges(java.lang.Object bean, java.lang.String propertyName)
bean
- the bean to log PropertyChangeEvents frompropertyName
- the name of the property which PropertyChangeEvents
should be logged
java.lang.NullPointerException
- if the bean or propertyName is nullpublic static void logPropertyChanges(java.lang.Object bean, java.lang.String propertyName, java.util.logging.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
java.lang.NullPointerException
- if the bean, propertyName, or logger is nullpublic static void logPropertyChanges(java.lang.Object bean, java.lang.String propertyName, java.util.logging.Logger logger, java.util.logging.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
java.lang.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 |