| Modifier and Type | Method and Description |
|---|---|
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.
|
public static void setDefaultLevel(Level level)
Level.FINE.level - the default level to be used if no custom level
has been providedNullPointerException - if the new defaultLevel is nullpublic static void logPropertyChanges(Object bean)
bean - the bean to log PropertyChangeEvents fromNullPointerException - 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 PropertyChangeEventsNullPointerException - 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 levelNullPointerException - 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 loggedNullPointerException - 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 PropertyChangeEventsNullPointerException - 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 levelNullPointerException - if the bean, propertyName, logger,
or level is nullCopyright © 2002-2015 JGoodies Software GmbH. All Rights Reserved.