| com.tc.aspectwerkz.aspect.MixinFactory
All known Subclasses: com.tc.aspectwerkz.aspect.AbstractMixinFactory,
MixinFactory | public interface MixinFactory (Code) | | Interface for that all mixin factories must implement.
author: Jonas BonŽr |
Method Summary | |
Object | mixinOf() Creates a new perJVM mixin instance, if it already exists then return it. | Object | mixinOf(Class klass) Creates a new perClass mixin instance, if it already exists then return it. | Object | mixinOf(Object instance) Creates a new perInstance mixin instance, if it already exists then return it. |
mixinOf | Object mixinOf()(Code) | | Creates a new perJVM mixin instance, if it already exists then return it.
the mixin instance |
mixinOf | Object mixinOf(Class klass)(Code) | | Creates a new perClass mixin instance, if it already exists then return it.
Parameters: klass - the mixin instance |
mixinOf | Object mixinOf(Object instance)(Code) | | Creates a new perInstance mixin instance, if it already exists then return it.
Parameters: instance - the mixin instance |
|
|