Package org.daisy.factory
Interface FactoryFilter<T extends Factory>
-
- Type Parameters:
T
- the type of Factory handled by this FactoryFilter
- All Known Subinterfaces:
EmbosserFilter
,PaperFilter
,TableFilter
public interface FactoryFilter<T extends Factory>
Provides an interface for filtering a collection of Factories.- Author:
- Joel HÃ¥kansson
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
accept(T object)
Tests if a specified object should be included in a list.
-
-
-
Method Detail
-
accept
boolean accept(T object)
Tests if a specified object should be included in a list.- Parameters:
object
- the Object to test- Returns:
- returns true if the specified object should be included in a list, false otherwise
-
-