org.jboss.weld.introspector.WeldAnnotated Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of weld-osgi-bundle Show documentation
Show all versions of weld-osgi-bundle Show documentation
Weld runtime packaged as an OSGi bundle
/*
* JBoss, Home of Professional Open Source
* Copyright 2008, Red Hat, Inc., and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.jboss.weld.introspector;
import org.jboss.weld.util.collections.Arrays2;
import javax.enterprise.context.NormalScope;
import javax.enterprise.inject.Stereotype;
import javax.enterprise.inject.spi.Annotated;
import javax.inject.Qualifier;
import javax.inject.Scope;
import javax.interceptor.InterceptorBinding;
import java.lang.annotation.Annotation;
import java.lang.reflect.Type;
import java.util.Set;
/**
* AnnotatedItem provides a uniform access to the annotations on an annotated
* item defined either in Java or XML
*
* @author Pete Muir
*/
public interface WeldAnnotated extends Annotated {
/**
* The set of meta-annotations to map
*/
Set> MAPPED_METAANNOTATIONS = Arrays2.asSet(Qualifier.class, Stereotype.class, Scope.class, NormalScope.class, InterceptorBinding.class);
/**
* The set of declared meta-annotations to map
*/
Set> MAPPED_DECLARED_METAANNOTATIONS = Arrays2.asSet(Scope.class, NormalScope.class);
/**
* Gets all annotations which are annotated with the given meta annotation
* type
*
* @param The meta annotation to match
* @return A set of matching meta-annotations. Returns an empty set if there
* are no matches.
*/
Set getMetaAnnotations(Class extends Annotation> metaAnnotationType);
/**
* Gets the binding types for this element
*
* @returns A set of binding types present on the type. Returns an empty set
* if there are no matches.
* @deprecated This reflection type should not know about JSR-299 binding
* types
*/
@Deprecated
Set getQualifiers();
/**
* Gets the binding types for this element
*
* @returns An array of binding types present on the type. Returns an empty
* array if there are no matches.
* @deprecated This reflection type should not know about JSR-299 binding
* types
*/
@Deprecated
Annotation[] getBindingsAsArray();
/**
* Get the type hierarchy of any interfaces implemented by this class.
*
* The returned types should have any type parameters resolved to their
* actual types.
*
* There is no guarantee this methods executes in O(1) time
*
* @return the type hierarchy
*/
Set getInterfaceClosure();
/**
* Gets the type of the element
*
* @return The type of the element
*/
Class getJavaClass();
/**
* Gets the actual type arguments for any parameterized types that this
* AnnotatedItem represents.
*
* @return An array of type arguments
*/
Type[] getActualTypeArguments();
/**
* Indicates if this AnnotatedItem represents a static element
*
* @return True if static, false otherwise
*/
boolean isStatic();
boolean isGeneric();
/**
* Indicates if this AnnotatedItem represents a final element
*
* @return True if final, false otherwise
*/
boolean isFinal();
/**
* Indicates if this annotated item is public
*
* @return if public, returns true
*/
boolean isPublic();
boolean isPrivate();
boolean isPackagePrivate();
Package getPackage();
/**
* Gets the name of this AnnotatedItem
*
* If it is not possible to determine the name of the underling element, a
* IllegalArgumentException is thrown
*
* @return The name
*/
String getName();
boolean isParameterizedType();
boolean isPrimitive();
}