Interface IFilter
-
public interface IFilterA filter compares the given object to some pattern and returnstrueif the two match andfalseotherwise.This interface may be implemented by clients, however factory methods are available on IExtensionTracker.
This interface can be used without OSGi running.
- Since:
- 3.1
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanmatches(IExtensionPoint target)Returntrueif the given object matches the criteria for this filter.
-
-
-
Method Detail
-
matches
boolean matches(IExtensionPoint target)
Returntrueif the given object matches the criteria for this filter.- Parameters:
target- the object to match- Returns:
trueif the target matches this filter andfalseotherwise
-
-