當前位置: 首頁>>代碼示例>>Java>>正文


Java ClassDoc.annotations方法代碼示例

本文整理匯總了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;
}
 
開發者ID:WinRoad-NET,項目名稱:wrdocletbase,代碼行數:17,代碼來源:DubboDocBuilder.java

示例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;
}
 
開發者ID:PrivacyStreams,項目名稱:PrivacyStreams,代碼行數:11,代碼來源:PSOperatorWrapperDoc.java

示例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;
}
 
開發者ID:PrivacyStreams,項目名稱:PrivacyStreams,代碼行數:11,代碼來源:PSItemDoc.java

示例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;
}
 
開發者ID:AdoptOpenJDK,項目名稱:openjdk-jdk10,代碼行數:9,代碼來源:Main.java


注:本文中的com.sun.javadoc.ClassDoc.annotations方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。