本文整理汇总了Java中com.sun.javadoc.ClassDoc.annotations方法的典型用法代码示例。如果您正苦于以下问题:Java ClassDoc.annotations方法的具体用法?Java ClassDoc.annotations怎么用?Java ClassDoc.annotations使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.sun.javadoc.ClassDoc
的用法示例。
在下文中一共展示了ClassDoc.annotations方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: isDubboService
import com.sun.javadoc.ClassDoc; //导入方法依赖的package包/类
protected boolean isDubboService(ClassDoc classDoc) {
AnnotationDesc[] annotations = classDoc.annotations();
for (int i = 0; i < annotations.length; i++) {
if (annotations[i].annotationType().qualifiedTypeName().equals("com.alibaba.dubbo.config.annotation.Service")) {
AnnotationDesc.ElementValuePair[] elementValuePairs = annotations[i].elementValues();
for (AnnotationDesc.ElementValuePair elementValuePair : elementValuePairs) {
if("protocol".equals(elementValuePair.element().name())
&& "http".equals(protocolMap.get(elementValuePair.value().toString().replace("\"", "")))) {
return false;
}
}
return true;
}
}
return false;
}
示例2: build
import com.sun.javadoc.ClassDoc; //导入方法依赖的package包/类
public static PSOperatorWrapperDoc build(ClassDoc classDoc) {
AnnotationDesc[] annotations = classDoc.annotations();
for (AnnotationDesc annotation : annotations) {
AnnotationTypeDoc annotationType = annotation.annotationType();
if (Consts.OPERATOR_WRAPPER_ANNOTATION.equals(annotationType.toString())) {
return new PSOperatorWrapperDoc(classDoc);
}
}
return null;
}
示例3: isValidPSItem
import com.sun.javadoc.ClassDoc; //导入方法依赖的package包/类
public static boolean isValidPSItem(ClassDoc classDoc) {
AnnotationDesc[] annotations = classDoc.annotations();
for (AnnotationDesc annotation : annotations) {
AnnotationTypeDoc annotationType = annotation.annotationType();
if (Consts.ITEM_ANNOTATION.equals(annotationType.toString())) {
return true;
}
}
return false;
}
示例4: start
import com.sun.javadoc.ClassDoc; //导入方法依赖的package包/类
public static boolean start(RootDoc root) {
for (ClassDoc d : root.classes()) {
for (AnnotationDesc a : d.annotations()) {
System.out.println(a.annotationType());
}
}
return true;
}