Package org.jboss.modules.filter
Class PathClassFilter
- java.lang.Object
-
- org.jboss.modules.filter.PathClassFilter
-
- All Implemented Interfaces:
ClassFilter
class PathClassFilter extends java.lang.Object implements ClassFilter
-
-
Field Summary
Fields Modifier and Type Field Description private PathFilter
resourcePathFilter
-
Constructor Summary
Constructors Constructor Description PathClassFilter(PathFilter resourcePathFilter)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
accept(java.lang.String className)
Determine whether a class name should be accepted by this filter.
-
-
-
Field Detail
-
resourcePathFilter
private final PathFilter resourcePathFilter
-
-
Constructor Detail
-
PathClassFilter
PathClassFilter(PathFilter resourcePathFilter)
-
-
Method Detail
-
accept
public boolean accept(java.lang.String className)
Description copied from interface:ClassFilter
Determine whether a class name should be accepted by this filter. The class name is qualified with a dot-separated package name.- Specified by:
accept
in interfaceClassFilter
- Parameters:
className
- the class name- Returns:
true
to accept the class,false
otherwise
-
-