Interface SearchField
-
- All Known Implementing Classes:
DefaultSearchField
public interface SearchFieldA search field represent a field in the advanced search mask.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SearchFieldGroupgetGroup()Returns thegroupto which this search field has been assigned.java.lang.StringgetLabel()Returns the (localized) label of this field.java.lang.StringgetName()Returns the name of this field.booleanisSortable()Returns whether this field is sortable or not.booleanisVisible()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:
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
-
-