if ("the kitchen sink".equals(value)) {
errorComp.setValue("I said anything but!");
errorComp.setStyle("color: red");
comp.getAttributes().put("style", "color: red");
}
else {
errorComp.setValue(null);
errorComp.setStyle(null);
comp.getAttributes().put("style", null);
}