Class NoopInjectionTarget<T>
- java.lang.Object
-
- org.apache.tapestry5.internal.jpa.NoopInjectionTarget<T>
-
- All Implemented Interfaces:
InjectionTarget<T>
,Producer<T>
public class NoopInjectionTarget<T> extends Object implements InjectionTarget<T>
-
-
Constructor Summary
Constructors Constructor Description NoopInjectionTarget()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
dispose(T instance)
Set<InjectionPoint>
getInjectionPoints()
void
inject(T instance, CreationalContext<T> ctx)
void
postConstruct(T instance)
void
preDestroy(T instance)
T
produce(CreationalContext<T> ctx)
-
-
-
Constructor Detail
-
NoopInjectionTarget
public NoopInjectionTarget()
-
-
Method Detail
-
getInjectionPoints
public Set<InjectionPoint> getInjectionPoints()
- Specified by:
getInjectionPoints
in interfaceProducer<T>
-
inject
public void inject(T instance, CreationalContext<T> ctx)
- Specified by:
inject
in interfaceInjectionTarget<T>
-
postConstruct
public void postConstruct(T instance)
- Specified by:
postConstruct
in interfaceInjectionTarget<T>
-
preDestroy
public void preDestroy(T instance)
- Specified by:
preDestroy
in interfaceInjectionTarget<T>
-
-