Uses of Class
com.caucho.amber.type.ListenerType

Packages that use ListenerType
com.caucho.amber.cfg   
com.caucho.amber.gen   
com.caucho.amber.manager   
com.caucho.amber.type   
 

Uses of ListenerType in com.caucho.amber.cfg
 

Methods in com.caucho.amber.cfg with parameters of type ListenerType
 void BaseConfigIntrospector.introspectListener(java.lang.Class type, ListenerType listenerType)
           
 

Uses of ListenerType in com.caucho.amber.gen
 

Methods in com.caucho.amber.gen with parameters of type ListenerType
 void ListenerComponent.setListenerType(ListenerType listenerType)
          Sets the bean info for the generator
 void ListenerGenerator.setListenerType(ListenerType listenerType)
          Sets the bean info for the generator
 

Uses of ListenerType in com.caucho.amber.manager
 

Methods in com.caucho.amber.manager that return ListenerType
 ListenerType AmberPersistenceUnit.addDefaultListener(java.lang.Class beanClass)
          Adds a default listener.
 ListenerType AmberPersistenceUnit.addEntityListener(java.lang.String entityName, java.lang.Class listenerClass)
          Adds an entity listener.
 ListenerType AmberContainer.getDefaultListener(java.lang.String className)
          Returns the default ListenerType for an introspected class.
 ListenerType AmberPersistenceUnit.getDefaultListener(java.lang.String className)
          Gets a default listener.
 ListenerType AmberContainer.getEntityListener(java.lang.String className)
          Returns the entity ListenerType for an introspected class.
 ListenerType AmberPersistenceUnit.getEntityListener(java.lang.String className)
          Gets an entity listener.
 ListenerType AmberContainer.getListener(java.lang.String className)
          Returns the listener for an introspected class.
 

Methods in com.caucho.amber.manager that return types with arguments of type ListenerType
 java.util.ArrayList<ListenerType> AmberContainer.getEntityListeners(java.lang.String entityClassName)
          Returns the entity listeners for an entity.
 

Methods in com.caucho.amber.manager with parameters of type ListenerType
 void AmberContainer.addDefaultListener(java.lang.String className, ListenerType type)
          Adds a default listener.
 void AmberContainer.addEntityListener(java.lang.String entityClassName, ListenerType listenerType)
          Adds an entity listener.
 

Uses of ListenerType in com.caucho.amber.type
 

Subclasses of ListenerType in com.caucho.amber.type
 class SubListenerType
          Represents a listener type with a parent listener: either a default listener declared in orm.xml meta-data or an entity listener specified in @EntityListeners entity annotation.
 

Methods in com.caucho.amber.type that return ListenerType
 ListenerType ListenerType.getParentType()
          Returns the parent type.
 ListenerType SubListenerType.getParentType()
          Returns the parent type.
 

Methods in com.caucho.amber.type that return types with arguments of type ListenerType
 java.util.ArrayList<ListenerType> EntityType.getListeners()
          Gets the entity listeners.
 

Methods in com.caucho.amber.type with parameters of type ListenerType
 void EntityType.addListener(ListenerType listener)
          Adds an entity listener.
 

Constructors in com.caucho.amber.type with parameters of type ListenerType
SubListenerType(AmberPersistenceUnit amberPersistenceUnit, ListenerType parent)