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