|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Method Summary | |
void |
addFilter(FilterInterface filter)
Add a filter to the end of a list and register it under a name |
EventInterface |
filterEvent(EventInterface evt)
Handles the event passing it through the chain of responsibility formed by the filters managed by this object. |
EventInterface[] |
filterEventList(EventInterface[] evt)
Handles the event list passing them through the chain of responsibility formed by the filters managed by this object. |
FilterInterface |
getFilterAt(int i)
|
FilterInterface |
getFilterByName(java.lang.String name)
|
FilterInterface[] |
getFilters()
|
void |
insertFilterAt(FilterInterface filter,
int i)
Insters a filter in the provided position in the filters stream |
void |
removeFilterAt(int i)
Remove the element at provided position from filters streams |
Method Detail |
public FilterInterface getFilterByName(java.lang.String name)
name
- is the unique name of the filter
public FilterInterface[] getFilters()
public void addFilter(FilterInterface filter)
filter
- is the filter to be inserted after all current filterspublic FilterInterface getFilterAt(int i)
i
- is the position of the filter to be returned
public void insertFilterAt(FilterInterface filter, int i)
filter
- is the filter to be insertedi
- is the position to insert the filterpublic void removeFilterAt(int i)
i
- is the position of the filter to be removedpublic EventInterface filterEvent(EventInterface evt)
public EventInterface[] filterEventList(EventInterface[] evt)
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |