org.springframework.core.annotation.AnnotatedElementUtils#getMetaAnnotationTypes ( )源码实例Demo

下面列出了org.springframework.core.annotation.AnnotatedElementUtils#getMetaAnnotationTypes ( ) 实例代码,或者点击链接到github查看源代码,也可以在右侧发表评论。

@Override
public Set<String> getMetaAnnotationTypes(String annotationName) {
	return (this.annotations.length > 0 ?
			AnnotatedElementUtils.getMetaAnnotationTypes(getIntrospectedClass(), annotationName) :
			Collections.emptySet());
}
 
源代码2 项目: lams   文件: StandardAnnotationMetadata.java
@Override
public Set<String> getMetaAnnotationTypes(String annotationName) {
	return (this.annotations.length > 0 ?
			AnnotatedElementUtils.getMetaAnnotationTypes(getIntrospectedClass(), annotationName) : null);
}
 
@Override
public Set<String> getMetaAnnotationTypes(String annotationName) {
	return (this.annotations.length > 0 ?
			AnnotatedElementUtils.getMetaAnnotationTypes(getIntrospectedClass(), annotationName) : null);
}