Uses of Class
org.jboss.seam.solder.reflection.annotated.AnnotatedTypeBuilder

Packages that use AnnotatedTypeBuilder
org.jboss.seam.solder.reflection.annotated A collection of base classes and builders for working with AnnotatedType metadata objects. 
 

Uses of AnnotatedTypeBuilder in org.jboss.seam.solder.reflection.annotated
 

Methods in org.jboss.seam.solder.reflection.annotated that return AnnotatedTypeBuilder
 AnnotatedTypeBuilder<X> AnnotatedTypeBuilder.addToClass(Annotation annotation)
          Add an annotation to the type declaration.
 AnnotatedTypeBuilder<X> AnnotatedTypeBuilder.addToConstructor(AnnotatedConstructor<X> constructor, Annotation annotation)
          Add an annotation to the specified constructor.
 AnnotatedTypeBuilder<X> AnnotatedTypeBuilder.addToConstructor(Constructor<X> constructor, Annotation annotation)
          Add an annotation to the specified constructor.
 AnnotatedTypeBuilder<X> AnnotatedTypeBuilder.addToConstructorParameter(Constructor<X> constructor, int position, Annotation annotation)
          Add an annotation to the specified constructor parameter.
 AnnotatedTypeBuilder<X> AnnotatedTypeBuilder.addToField(AnnotatedField<? super X> field, Annotation annotation)
          Add an annotation to the specified field.
 AnnotatedTypeBuilder<X> AnnotatedTypeBuilder.addToField(Field field, Annotation annotation)
          Add an annotation to the specified field.
 AnnotatedTypeBuilder<X> AnnotatedTypeBuilder.addToMethod(AnnotatedMethod<? super X> method, Annotation annotation)
          Add an annotation to the specified method.
 AnnotatedTypeBuilder<X> AnnotatedTypeBuilder.addToMethod(Method method, Annotation annotation)
          Add an annotation to the specified method.
 AnnotatedTypeBuilder<X> AnnotatedTypeBuilder.addToMethodParameter(Method method, int position, Annotation annotation)
          Add an annotation to the specified method parameter.
 AnnotatedTypeBuilder<X> AnnotatedTypeBuilder.addToParameter(AnnotatedParameter<? super X> parameter, Annotation annotation)
          Add an annotation to the specified parameter.
 AnnotatedTypeBuilder<X> AnnotatedTypeBuilder.overrideConstructorParameterType(Constructor<X> constructor, int position, Type type)
          Override the declared type of a constructor parameter
 AnnotatedTypeBuilder<X> AnnotatedTypeBuilder.overrideMethodParameterType(Method method, int position, Type type)
          Override the declared type of a method parameter
 AnnotatedTypeBuilder<X> AnnotatedTypeBuilder.overrideParameterType(AnnotatedParameter<? super X> parameter, Type type)
           
 AnnotatedTypeBuilder<X> AnnotatedTypeBuilder.readFromType(AnnotatedType<X> type)
          Reads in from an existing AnnotatedType.
 AnnotatedTypeBuilder<X> AnnotatedTypeBuilder.readFromType(AnnotatedType<X> type, boolean overwrite)
          Reads in from an existing AnnotatedType.
 AnnotatedTypeBuilder<X> AnnotatedTypeBuilder.readFromType(Class<X> type)
          Reads the annotations from an existing java type.
 AnnotatedTypeBuilder<X> AnnotatedTypeBuilder.readFromType(Class<X> type, boolean overwrite)
          Reads the annotations from an existing java type.
<A extends Annotation>
AnnotatedTypeBuilder<X>
AnnotatedTypeBuilder.redefine(Class<A> annotationType, AnnotationRedefiner<A> redefinition)
          Redefine any annotations of the specified type.
 AnnotatedTypeBuilder<X> AnnotatedTypeBuilder.removeFromAll(Class<? extends Annotation> annotationType)
          Remove annotations from the type, and all of it's members.
 AnnotatedTypeBuilder<X> AnnotatedTypeBuilder.removeFromClass(Class<? extends Annotation> annotationType)
          Remove an annotation from the type
 AnnotatedTypeBuilder<X> AnnotatedTypeBuilder.removeFromConstructor(AnnotatedConstructor<X> constructor, Class<? extends Annotation> annotationType)
          Remove an annotation from the specified constructor.
 AnnotatedTypeBuilder<X> AnnotatedTypeBuilder.removeFromConstructor(Constructor<X> constructor, Class<? extends Annotation> annotationType)
          Remove an annotation from the specified constructor.
 AnnotatedTypeBuilder<X> AnnotatedTypeBuilder.removeFromConstructorParameter(Constructor<X> constructor, int position, Class<? extends Annotation> annotationType)
          Remove an annotation from the specified constructor parameter.
 AnnotatedTypeBuilder<X> AnnotatedTypeBuilder.removeFromField(AnnotatedField<? super X> field, Class<? extends Annotation> annotationType)
          Remove an annotation from the specified field.
 AnnotatedTypeBuilder<X> AnnotatedTypeBuilder.removeFromField(Field field, Class<? extends Annotation> annotationType)
          Remove an annotation from the specified field.
 AnnotatedTypeBuilder<X> AnnotatedTypeBuilder.removeFromMethod(AnnotatedMethod<? super X> method, Class<? extends Annotation> annotationType)
          Remove an annotation from the specified method.
 AnnotatedTypeBuilder<X> AnnotatedTypeBuilder.removeFromMethod(Method method, Class<? extends Annotation> annotationType)
          Remove an annotation from the specified method.
 AnnotatedTypeBuilder<X> AnnotatedTypeBuilder.removeFromMethodParameter(Method method, int position, Class<? extends Annotation> annotationType)
          Remove an annotation from the specified method parameter.
 AnnotatedTypeBuilder<X> AnnotatedTypeBuilder.removeFromParameter(AnnotatedParameter<? super X> parameter, Class<? extends Annotation> annotationType)
          Remove an annotation from the specified parameter.
 AnnotatedTypeBuilder<X> AnnotatedTypeBuilder.setJavaClass(Class<X> javaClass)
           
 



Copyright © 2008-2011 Seam Framework. All Rights Reserved.