public interface I_CmsSearchStateFacet
| Modifier and Type | Method and Description |
|---|---|
void |
addChecked(java.lang.String entry)
Add a facet entry to the collection of checked entries.
|
void |
clearChecked()
Clear the collection of checked entries - i.e., tell that nothing is checked.
|
java.util.List<java.lang.String> |
getCheckedEntries()
Returns all checked entries of a facet.
|
boolean |
getIgnoreChecked()
Returns a flag, indicating if the checked entries should be ignored.
|
java.util.Map<java.lang.String,java.lang.Boolean> |
getIsChecked()
Returns a map that tells for each facet entry (an arbitrary string), if it is checked.
|
boolean |
getUseLimit()
Returns a flag, indicating if the limit for the maximal number of facet entries should be used.
|
void |
setIgnoreChecked(boolean ignore)
Set, if the checked facet entries should be ignored.
|
void |
setUseLimit(boolean useLimit)
Set, if the limit for the maximal number of facet entries should be used.
|
void addChecked(java.lang.String entry)
entry - The facet entry.void clearChecked()
java.util.List<java.lang.String> getCheckedEntries()
boolean getIgnoreChecked()
java.util.Map<java.lang.String,java.lang.Boolean> getIsChecked()
boolean getUseLimit()
void setIgnoreChecked(boolean ignore)
ignore - Flag, indicating if the checked entries should be ignored or not.void setUseLimit(boolean useLimit)
useLimit - Flag, indicating if the configured limit for the maximal number of facet entries should be used.