Package net.sf.basedb.util.extensions
Class DefaultFilter
java.lang.Object
net.sf.basedb.util.extensions.DefaultFilter
- All Implemented Interfaces:
ExtensionsFilter
- Direct Known Subclasses:
Settings
A default filter implementation that enables all
extensions and extension points and sorts the
extensions based on the
Extension.getIndex()
values.- Version:
- 2.7
- Author:
- nicklas
- Last modified
- $Date:2008-03-20 12:15:25 +0100 (Thu, 20 Mar 2008) $
-
Field Summary
Modifier and TypeFieldDescriptionstatic final Comparator<InvokationContext<?>>
Comparator used to order a list of invokation contexts by the index value of the extension.static final Comparator<Extension<?>>
Comparator used to order a list of extensions by the index value of the extension. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
Check if an extension is enabled or disabled.boolean
isEnabled
(ExtensionPoint<?> extensionPoint) Check if an extension point is enabled or disabled.void
sort
(List<? extends InvokationContext<?>> extensions) Sort a list of invoked extensions according to some property.
-
Field Details
-
INDEX_COMPARATOR_CTX
Comparator used to order a list of invokation contexts by the index value of the extension.- See Also:
-
INDEX_COMPARATOR_EXT
Comparator used to order a list of extensions by the index value of the extension.- See Also:
-
-
Constructor Details
-
DefaultFilter
public DefaultFilter()Create a new default filter.
-
-
Method Details
-
isEnabled
Description copied from interface:ExtensionsFilter
Check if an extension point is enabled or disabled.- Specified by:
isEnabled
in interfaceExtensionsFilter
- Parameters:
extensionPoint
- The extension point to check- Returns:
- TRUE if the extension point is enabled, FALSE if it is disabled
-
isEnabled
Description copied from interface:ExtensionsFilter
Check if an extension is enabled or disabled.- Specified by:
isEnabled
in interfaceExtensionsFilter
- Parameters:
extension
- The extension to check- Returns:
- TRUE if the extension is enabled, FALSE if it is disabled
-
sort
Description copied from interface:ExtensionsFilter
Sort a list of invoked extensions according to some property.- Specified by:
sort
in interfaceExtensionsFilter
- Parameters:
extensions
- The list of extensions to sort
-