Class AnnotatedMethodConfiguratorImpl<T>
- java.lang.Object
-
- org.jboss.weld.bootstrap.events.configurator.AnnotatedMethodConfiguratorImpl<T>
-
- Type Parameters:
T-
- All Implemented Interfaces:
AnnotatedMethodConfigurator<T>
public class AnnotatedMethodConfiguratorImpl<T> extends Object implements AnnotatedMethodConfigurator<T>
Configurator forAnnotatedMethod.- Author:
- Martin Kouba
-
-
Field Summary
Fields Modifier and Type Field Description protected List<AnnotatedParameterConfiguratorImpl<T>>params
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Cadd(Annotation annotation)AgetAnnotated()List<AnnotatedParameterConfigurator<T>>params()Cremove(Predicate<Annotation> predicate)CremoveAll()protected AnnotatedMethodConfiguratorImpl<T>self()-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface javax.enterprise.inject.spi.configurator.AnnotatedMethodConfigurator
add, filterParams, getAnnotated, remove, removeAll
-
-
-
-
Field Detail
-
params
protected final List<AnnotatedParameterConfiguratorImpl<T>> params
-
-
Method Detail
-
params
public List<AnnotatedParameterConfigurator<T>> params()
- Specified by:
paramsin interfaceAnnotatedMethodConfigurator<T>- Returns:
- an immutable list of
AnnotatedParameterConfigurators reflecting theAnnotatedCallable.getParameters()
-
self
protected AnnotatedMethodConfiguratorImpl<T> self()
-
getAnnotated
public A getAnnotated()
-
add
public C add(Annotation annotation)
-
remove
public C remove(Predicate<Annotation> predicate)
-
removeAll
public C removeAll()
-
-