Uses of Interface
magoffin.matt.ma2.plugin.Plugin

Packages that use Plugin
magoffin.matt.ma2.biz   
magoffin.matt.ma2.biz.impl   
magoffin.matt.ma2.dao.support   
magoffin.matt.ma2.plugin   
magoffin.matt.ma2.support   
 

Uses of Plugin in magoffin.matt.ma2.biz
 

Methods in magoffin.matt.ma2.biz with type parameters of type Plugin
<T extends Plugin>
java.util.List<T>
SystemBiz.getPluginsOfType(java.lang.Class<T> pluginType)
          Get all registered plugins of a specific type.
 

Uses of Plugin in magoffin.matt.ma2.biz.impl
 

Methods in magoffin.matt.ma2.biz.impl with type parameters of type Plugin
<T extends Plugin>
java.util.List<T>
SystemBizImpl.getPluginsOfType(java.lang.Class<T> pluginType)
           
 

Uses of Plugin in magoffin.matt.ma2.dao.support
 

Classes in magoffin.matt.ma2.dao.support that implement Plugin
 class AbstractJdbcBrowseModePlugin
          Base class for JDBC based implementations of BrowseModePlugin.
 class AlbumsByDateBrowseModePlugin
          Implementation of BrowseModePlugin for a "browse user albums by date".
 class PopularityBrowseModePlugin
          Browse mode based on media item popularity (hits).
 class RatingAverageBrowseModePlugin
          Browse mode based on average media item ratings.
 

Methods in magoffin.matt.ma2.dao.support that return types with arguments of type Plugin
 java.lang.Class<? extends Plugin> AbstractJdbcBrowseModePlugin.getPluginType()
           
 

Uses of Plugin in magoffin.matt.ma2.plugin
 

Subinterfaces of Plugin in magoffin.matt.ma2.plugin
 interface BrowseModePlugin
          Plugin API for browse-mode types.
 

Classes in magoffin.matt.ma2.plugin that implement Plugin
 class NoopPlugin
          Plugin implementation that does nothing.
 

Methods in magoffin.matt.ma2.plugin that return types with arguments of type Plugin
 java.lang.Class<? extends Plugin> NoopPlugin.getPluginType()
           
 java.lang.Class<? extends Plugin> Plugin.getPluginType()
          Return the type of plugin this plugin represents.
 

Uses of Plugin in magoffin.matt.ma2.support
 

Classes in magoffin.matt.ma2.support that implement Plugin
 class AbstractPlugin
          Abstract base Plugin implementation that provides a standardized Spring initialization method.