javax.enterprise.util
Class AnnotationLiteral<T extends java.lang.annotation.Annotation>
java.lang.Object
   javax.enterprise.util.AnnotationLiteral<T>
javax.enterprise.util.AnnotationLiteral<T>
- Type Parameters:
- T- the annotation type
- All Implemented Interfaces: 
- java.io.Serializable, java.lang.annotation.Annotation
- public abstract class AnnotationLiteral<T extends java.lang.annotation.Annotation> 
- extends java.lang.Object- implements java.lang.annotation.Annotation, java.io.Serializable
Supports inline instantiation of annotation type instances.
 
 An instance of an annotation type may be obtained by subclassing 
 AnnotationLiteral.
 
 
 public abstract class PayByQualifier 
       extends AnnotationLiteral<PayBy>
       implements PayBy {}
 
 
 
 PayBy paybyCheque = new PayByQualifier() { public PaymentMethod value() { return CHEQUE; } };
 
- Author:
- Pete Muir, Gavin King
- See Also:
- Instance.select(Annotation...),- Event.select(Annotation...), 
Serialized Form
 
 
| Methods inherited from class java.lang.Object | 
| clone, finalize, getClass, notify, notifyAll, wait, wait, wait | 
 
AnnotationLiteral
protected AnnotationLiteral()
annotationType
public java.lang.Class<? extends java.lang.annotation.Annotation> annotationType()
- 
- Specified by:
- annotationTypein interface- java.lang.annotation.Annotation
 
- 
 
toString
public java.lang.String toString()
- 
- Specified by:
- toStringin interface- java.lang.annotation.Annotation
- Overrides:
- toStringin class- java.lang.Object
 
- 
 
equals
public boolean equals(java.lang.Object other)
- 
- Specified by:
- equalsin interface- java.lang.annotation.Annotation
- Overrides:
- equalsin class- java.lang.Object
 
- 
 
hashCode
public int hashCode()
- 
- Specified by:
- hashCodein interface- java.lang.annotation.Annotation
- Overrides:
- hashCodein class- java.lang.Object
 
- 
 
Copyright © 2008-2009 Seam Framework. All Rights Reserved.