use of com.manydesigns.elements.fields.search.BooleanSearchField in project Portofino by ManyDesigns.
the class BooleanFieldHelper method tryToInstantiateSearchField.
public SearchField tryToInstantiateSearchField(ClassAccessor classAccessor, PropertyAccessor propertyAccessor, String prefix) {
SearchField result;
Class type = propertyAccessor.getType();
if (type == Boolean.class || type == Boolean.TYPE) {
result = new BooleanSearchField(propertyAccessor, prefix);
} else {
result = null;
}
return result;
}
Aggregations