Object value = eval(accessor, source);
if (value != null)
label = toString(value);
}
if (label == null) {
Label _label = objectContext.getAnnotation(Label.class);
if (_label != null && !_label.value().equals(DEFAULT)) {
label = _label.value();
}
}
if (label == null && _category != null && !_category.label().equals(DEFAULT)) {
label = _category.label();
}