All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jboss.weld.annotated.enhanced.jlr.EnhancedAnnotationImpl Maven / Gradle / Ivy

/*
 * 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.annotated.enhanced.jlr;

import java.lang.annotation.Annotation;
import java.util.Collection;
import java.util.Collections;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
import java.util.Set;

import javax.enterprise.inject.spi.AnnotatedMethod;

import org.jboss.weld.annotated.enhanced.EnhancedAnnotatedMethod;
import org.jboss.weld.annotated.enhanced.EnhancedAnnotatedType;
import org.jboss.weld.annotated.enhanced.EnhancedAnnotation;
import org.jboss.weld.annotated.slim.SlimAnnotatedType;
import org.jboss.weld.resources.ClassTransformer;
import org.jboss.weld.util.collections.HashSetSupplier;

import com.google.common.collect.Multimaps;
import com.google.common.collect.SetMultimap;

/**
 * Represents an annotated annotation
 * 

* This class is immutable and therefore threadsafe * * @param * @author Pete Muir */ public class EnhancedAnnotationImpl extends EnhancedAnnotatedTypeImpl implements EnhancedAnnotation { // The annotated members map (annotation -> member with annotation) private final SetMultimap, EnhancedAnnotatedMethod> annotatedMembers; // The implementation class of the annotation private final Class clazz; // The set of abstracted members private final Set> members; //we can't call this method 'of', cause it won't compile on JDK7 public static EnhancedAnnotation create(SlimAnnotatedType annotatedType, ClassTransformer classTransformer) { Class annotationType = annotatedType.getJavaClass(); Map, Annotation> annotationMap = new HashMap, Annotation>(); annotationMap.putAll(buildAnnotationMap(annotatedType.getAnnotations())); annotationMap.putAll(buildAnnotationMap(classTransformer.getTypeStore().get(annotationType))); // Annotations and declared annotations are the same for annotation type return new EnhancedAnnotationImpl(annotatedType, annotationMap, annotationMap, classTransformer); } /** * Constructor *

* Initializes the superclass with the built annotation map * * @param annotationType The annotation type */ protected EnhancedAnnotationImpl(SlimAnnotatedType annotatedType, Map, Annotation> annotationMap, Map, Annotation> declaredAnnotationMap, ClassTransformer classTransformer) { super(annotatedType, annotationMap, declaredAnnotationMap, classTransformer); this.clazz = annotatedType.getJavaClass(); members = new HashSet>(); annotatedMembers = Multimaps.newSetMultimap(new HashMap, Collection>>(), HashSetSupplier.>instance()); for (AnnotatedMethod annotatedMethod : annotatedType.getMethods()) { EnhancedAnnotatedMethod enhancedAnnotatedMethod = EnhancedAnnotatedMethodImpl.of(annotatedMethod, this, classTransformer); members.add(enhancedAnnotatedMethod); for (Annotation annotation : enhancedAnnotatedMethod.getAnnotations()) { annotatedMembers.put(annotation.annotationType(), enhancedAnnotatedMethod); } } } @Override protected Set> getOverriddenMethods(EnhancedAnnotatedType annotatedType, Set> methods, boolean skipOverridingBridgeMethods) { return Collections.emptySet(); } /** * Gets all members of the annotation *

* Initializes the members first if they are null * * @return The set of abstracted members * @see org.jboss.weld.annotated.enhanced.EnhancedAnnotation#getMembers() */ public Set> getMembers() { return Collections.unmodifiableSet(members); } /** * Returns the annotated members with a given annotation type *

* If the annotated members are null, they are initialized first. * * @param annotationType The annotation type to match * @return The set of abstracted members with the given annotation type * present. An empty set is returned if no matches are found * @see org.jboss.weld.annotated.enhanced.EnhancedAnnotation#getMembers(Class) */ public Set> getMembers(Class annotationType) { return Collections.unmodifiableSet(annotatedMembers.get(annotationType)); } /** * Gets a string representation of the annotation * * @return A string representation */ @Override public String toString() { return getJavaClass().toString(); } @Override public Class getDelegate() { return clazz; } @Override public int hashCode() { return super.hashCode(); } @Override public boolean equals(Object obj) { if (obj == null) { return false; } if (this == obj) { return true; } if (getClass() != obj.getClass()) { return false; } EnhancedAnnotationImpl that = cast(obj); return super.equals(that); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy