}
public StringProperty categoryProperty() {
if (category == null) {
category = new SimpleStringProperty();
Category categoryAnnotation = getAnnotation(Category.class);
if (categoryAnnotation != null) {
category.set(categoryAnnotation.value());
}
}
return category;
}