Interface AttributeFilterPanel
-
- All Known Implementing Classes:
AbsoluteTimestampAttributeFilterPanel,AbstractAttributeFilterPanel,AbstractRangeAttributeFilterPanel,BooleanAttributeFilterPanel,ContinuousAttributeFilterPanel,DiscreteAttributeFilterPanel,LiteralAttributeFilterPanel,RelativeTimestampAttributeFilterPanel
public interface AttributeFilterPanel
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classAttributeFilterPanel.Type
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidclosing()This method is called when the panel is about to be closedintgetAttributeCount()returns the number of attributes included in this paneljava.util.List<EventFilter>getFiltersToAdd()After closing, the filters to add will be retrieved through this methodjava.util.List<EventFilter>getFiltersToRemove()After closing, the filters to remove will be retrieved through this methodAttributeFilterPanel.TypegetType()returns the type of attribute filter panelvoidopening()This method is called when the panel is about to be shown.
-
-
-
Method Detail
-
opening
void opening()
This method is called when the panel is about to be shown.
-
closing
void closing()
This method is called when the panel is about to be closed
-
getFiltersToAdd
java.util.List<EventFilter> getFiltersToAdd()
After closing, the filters to add will be retrieved through this method- Returns:
-
getFiltersToRemove
java.util.List<EventFilter> getFiltersToRemove()
After closing, the filters to remove will be retrieved through this method- Returns:
-
getType
AttributeFilterPanel.Type getType()
returns the type of attribute filter panel- Returns:
-
getAttributeCount
int getAttributeCount()
returns the number of attributes included in this panel- Returns:
-
-