-
- All Known Implementing Classes:
ChannelFilter
,InfoBitFilter
,PluginFilter
,PluginsProgramFilter
,SeparatorFilter
,ShowAllFilter
,SingleChannelFilter
,UserFilter
public interface ProgramFilter
Defines the filtering behavior.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
accept(Program program)
java.lang.String
getName()
java.lang.String
toString()
-
-
-
Method Detail
-
accept
boolean accept(Program program)
- Parameters:
program
- the program to be checked- Returns:
- true, if the filter accepts the specified program
-
toString
java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
getName
java.lang.String getName()
- Returns:
- the name of this filter
-
-