public void setGraphicalErrorManagement(boolean graphicalErrorManagement) {
this.graphicalErrorManagement = graphicalErrorManagement;
}
public void setConfirmation(T target, boolean confirmation) {
ConfirmationChecker checker = getLinkedChecker(target, ConfirmationChecker.class);
if (checker != null) {
checker.setConfirmation(confirmation);
}
}