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

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

@Override
public boolean hasMetaAnnotation(String annotationName) {
	return (this.annotations.length > 0 &&
			AnnotatedElementUtils.hasMetaAnnotationTypes(getIntrospectedClass(), annotationName));
}
 
源代码2 项目: lams   文件: StandardAnnotationMetadata.java
@Override
public boolean hasMetaAnnotation(String annotationName) {
	return (this.annotations.length > 0 &&
			AnnotatedElementUtils.hasMetaAnnotationTypes(getIntrospectedClass(), annotationName));
}
 
@Override
public boolean hasMetaAnnotation(String annotationName) {
	return (this.annotations.length > 0 &&
			AnnotatedElementUtils.hasMetaAnnotationTypes(getIntrospectedClass(), annotationName));
}