Class AnnotatedConstructorConfiguratorImpl<T>
- java.lang.Object
-
- org.jboss.weld.bootstrap.events.configurator.AnnotatedConstructorConfiguratorImpl<T>
-
- Type Parameters:
T-
- All Implemented Interfaces:
AnnotatedConstructorConfigurator<T>
public class AnnotatedConstructorConfiguratorImpl<T> extends Object implements AnnotatedConstructorConfigurator<T>
Configurator forAnnotatedConstructor.- 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 AnnotatedConstructorConfiguratorImpl<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.AnnotatedConstructorConfigurator
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 interfaceAnnotatedConstructorConfigurator<T>- Returns:
- an immutable list of
AnnotatedParameterConfigurators reflecting theAnnotatedCallable.getParameters()
-
self
protected AnnotatedConstructorConfiguratorImpl<T> self()
-
getAnnotated
public A getAnnotated()
-
add
public C add(Annotation annotation)
-
remove
public C remove(Predicate<Annotation> predicate)
-
removeAll
public C removeAll()
-
-