Uses of Interface
org.mybatis.generator.api.Plugin

Packages that use Plugin
org.mybatis.generator.api Provides the main classes and interfaces used by clients of MyBatis Generator. 
org.mybatis.generator.config   
org.mybatis.generator.internal   
org.mybatis.generator.plugins   
 

Uses of Plugin in org.mybatis.generator.api
 

Classes in org.mybatis.generator.api that implement Plugin
 class PluginAdapter
          This class includes no-operation methods for almost every method in the Plugin interface.
 

Uses of Plugin in org.mybatis.generator.config
 

Methods in org.mybatis.generator.config that return Plugin
 Plugin Context.getPlugins()
           
 

Uses of Plugin in org.mybatis.generator.internal
 

Classes in org.mybatis.generator.internal that implement Plugin
 class PluginAggregator
          This class is for internal use only.
 

Methods in org.mybatis.generator.internal that return Plugin
static Plugin ObjectFactory.createPlugin(Context context, PluginConfiguration pluginConfiguration)
           
 

Methods in org.mybatis.generator.internal with parameters of type Plugin
 void PluginAggregator.addPlugin(Plugin plugin)
           
 

Uses of Plugin in org.mybatis.generator.plugins
 

Classes in org.mybatis.generator.plugins that implement Plugin
 class CachePlugin
          This plugin adds a cache element to generated sqlMaps.
 class CaseInsensitiveLikePlugin
          This plugin demonstrates adding methods to the example class to enable case-insensitive LIKE searches.
 class EqualsHashCodePlugin
          This plugin adds equals() and hashCode() methods to the generated model classes.
 class MapperConfigPlugin
          This plugin generates a MapperConfig file containing mapper entries for SQL maps generated for MyBatis3.
 class RenameExampleClassPlugin
          This plugin demonstrates overriding the initialized() method to rename the generated example classes.
 class RowBoundsPlugin
          This plugin will add selectByExample methods that include rowBounds parameters to the generated mapper interface.
 class SerializablePlugin
          This plugin adds the java.io.Serializable marker interface to all generated model objects.
 class SqlMapConfigPlugin
          This plugin generates an SqlMapConfig file containing sqlMap entries for all generated SQL maps.
 class ToStringPlugin
           
 class VirtualPrimaryKeyPlugin
          This plugin can be used to specify columns that act as a primary key, even if they are not strictly defined as primary keys in the database.
 



Copyright © 2010-2012 MyBatis.org. All Rights Reserved.