本文整理匯總了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;
}