当前位置: 首页>>代码示例>>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;未经允许,请勿转载。