Interface SearchField
-
- All Known Implementing Classes:
DefaultSearchField
public interface SearchField
A search field represent a field in the advanced search mask.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SearchFieldGroup
getGroup()
Returns thegroup
to which this search field has been assigned.java.lang.String
getLabel()
Returns the (localized) label of this field.java.lang.String
getName()
Returns the name of this field.boolean
isSortable()
Returns whether this field is sortable or not.boolean
isVisible()
Returns whether this field is visible or not.
-
-
-
Method Detail
-
getName
java.lang.String getName()
Returns the name of this field.- Returns:
- name of this field
-
getLabel
java.lang.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:
true
if this field is visible,false
otherwise
-
isSortable
boolean isSortable()
Returns whether this field is sortable or not.- Returns:
true
if this field is sortable,false
otherwise
-
getGroup
SearchFieldGroup getGroup()
Returns thegroup
to which this search field has been assigned.- Returns:
- the group which contains this search field
-
-