Interface SearchField
- All Known Implementing Classes:
DefaultSearchField
public interface SearchField
A search field represent a field in the advanced search mask.
-
Method Summary
Modifier and TypeMethodDescriptiongetGroup()Returns thegroupto which this search field has been assigned.getLabel()Returns the (localized) label of this field.getName()Returns the name of this field.booleanReturns whether this field is sortable or not.booleanReturns whether this field is visible or not.
-
Method Details
-
getName
String getName()Returns the name of this field.- Returns:
- name of this field
-
getLabel
String getLabel()Returns the (localized) label of this field.- Returns:
- label of this field
-
isVisible
boolean isVisible()Returns whether this field is visible or not.- Returns:
trueif this field is visible,falseotherwise
-
isSortable
boolean isSortable()Returns whether this field is sortable or not.- Returns:
trueif this field is sortable,falseotherwise
-
getGroup
SearchFieldGroup getGroup()Returns thegroupto which this search field has been assigned.- Returns:
- the group which contains this search field
-