Package org.scijava.plugin
Class AbstractTypedPlugin<D>
- java.lang.Object
-
- org.scijava.AbstractContextual
-
- org.scijava.plugin.AbstractRichPlugin
-
- org.scijava.plugin.AbstractTypedPlugin<D>
-
- Type Parameters:
D- Data type associated with the plugin.
- All Implemented Interfaces:
Comparable<Prioritized>,Contextual,Identifiable,Locatable,Logged,HasPluginInfo,RichPlugin,SciJavaPlugin,TypedPlugin<D>,Prioritized,Typed<D>,Versioned
- Direct Known Subclasses:
AbstractHandlerPlugin,AbstractWrapperPlugin
public abstract class AbstractTypedPlugin<D> extends AbstractRichPlugin implements TypedPlugin<D>
Abstract base class forTypedPlugins.- Author:
- Curtis Rueden
- See Also:
Typed
-
-
Constructor Summary
Constructors Constructor Description AbstractTypedPlugin()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleansupports(D data)Gets whether this object is compatible with the given data object.-
Methods inherited from class org.scijava.plugin.AbstractRichPlugin
getInfo, getPriority, setInfo, setPriority, toString
-
Methods inherited from class org.scijava.AbstractContextual
context, getContext
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.scijava.Contextual
context, getContext, setContext
-
Methods inherited from interface org.scijava.plugin.HasPluginInfo
getInfo, setInfo
-
Methods inherited from interface org.scijava.Locatable
getLocation
-
Methods inherited from interface org.scijava.Prioritized
compareTo, getPriority, setPriority
-
Methods inherited from interface org.scijava.plugin.RichPlugin
getIdentifier, log
-
Methods inherited from interface org.scijava.Versioned
getVersion
-
-
-
-
Method Detail
-
supports
public boolean supports(D data)
Description copied from interface:TypedGets whether this object is compatible with the given data object.By default, this method will return
trueiff the data is assignable to the associated type given byTyped.getType(). But individual implementations may have other requirements beyond class assignability.
-
-