Package com.bc.ceres.swing.binding
Class BindingContext.VerbousProblemHandler
- java.lang.Object
-
- com.bc.ceres.swing.binding.BindingContext.VerbousProblemHandler
-
- All Implemented Interfaces:
BindingProblemListener
- Enclosing class:
- BindingContext
public static class BindingContext.VerbousProblemHandler extends Object implements BindingProblemListener
-
-
Constructor Summary
Constructors Constructor Description VerbousProblemHandler()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
problemCleared(BindingProblem oldProblem)
Called when a problem has been cleared in aBinding
of aBindingContext
.void
problemReported(BindingProblem newProblem, BindingProblem oldProblem)
Called when a problem has been reported on aBinding
of aBindingContext
.
-
-
-
Method Detail
-
problemReported
public void problemReported(BindingProblem newProblem, BindingProblem oldProblem)
Description copied from interface:BindingProblemListener
Called when a problem has been reported on aBinding
of aBindingContext
.- Specified by:
problemReported
in interfaceBindingProblemListener
- Parameters:
newProblem
- The new problem.oldProblem
- The old problem, may benull
if no problem existed before.
-
problemCleared
public void problemCleared(BindingProblem oldProblem)
Description copied from interface:BindingProblemListener
Called when a problem has been cleared in aBinding
of aBindingContext
.- Specified by:
problemCleared
in interfaceBindingProblemListener
- Parameters:
oldProblem
- The old problem.
-
-