Package org.jboss.shrinkwrap.api
Interface Filter<T>
-
- All Known Implementing Classes:
ExcludePaths
,ExcludeRegExpPaths
,IncludeAllClasses
,IncludeAllPaths
,IncludePaths
,IncludeRegExpPaths
public interface Filter<T>
Used to filter inputs to be added to the targetArchive
. Used on multi-add operations such asArchive.merge(Archive, Filter)
.- Version:
- $Revision: $
- Author:
- Aslak Knutsen
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
include(T object)
Called per operation in a multi add operation.
-
-
-
Method Detail
-
include
boolean include(T object)
Called per operation in a multi add operation.- Parameters:
object
- a object to filter on- Returns:
- true if the object should be included in target
-
-