public void setValue(Object target, Object value) throws IllegalArgumentException, IllegalAccessException, InvocationTargetException, SecurityException, NoSuchFieldException {
if (!(value instanceof Style)) {
throw new XWTException("Style is expected.");
}
Style style = (Style) value;
style.apply(target);
}
}