当前位置: 首页>>代码示例>>Java>>正文


Java ASTPrimaryPrefix类代码示例

本文整理汇总了Java中net.sourceforge.pmd.lang.java.ast.ASTPrimaryPrefix的典型用法代码示例。如果您正苦于以下问题:Java ASTPrimaryPrefix类的具体用法?Java ASTPrimaryPrefix怎么用?Java ASTPrimaryPrefix使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。


ASTPrimaryPrefix类属于net.sourceforge.pmd.lang.java.ast包,在下文中一共展示了ASTPrimaryPrefix类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: isPlainJunitAssert

import net.sourceforge.pmd.lang.java.ast.ASTPrimaryPrefix; //导入依赖的package包/类
/**
 * Tells if the statement is an assert statement or not.
 * @param statement Root node to search assert statements
 * @return True is statement is assert, false otherwise
 */
private static boolean isPlainJunitAssert(final Node statement) {
    final ASTPrimaryExpression expression =
        ProhibitPlainJunitAssertionsRule.getChildNodeWithType(
            statement, ASTPrimaryExpression.class
        );
    final ASTPrimaryPrefix prefix =
        ProhibitPlainJunitAssertionsRule.getChildNodeWithType(
            expression, ASTPrimaryPrefix.class
        );
    final ASTName name = ProhibitPlainJunitAssertionsRule
        .getChildNodeWithType(prefix, ASTName.class);
    boolean assrt = false;
    if (name != null) {
        final String img = name.getImage();
        assrt = img != null && (img.startsWith("assert")
            || img.startsWith("Assert.assert"));
    }
    return assrt;
}
 
开发者ID:teamed,项目名称:qulice,代码行数:25,代码来源:ProhibitPlainJunitAssertionsRule.java

示例2: visit

import net.sourceforge.pmd.lang.java.ast.ASTPrimaryPrefix; //导入依赖的package包/类
@Override
public Object visit(ASTName node, Object data) {
    if (node.jjtGetParent() instanceof ASTPrimaryPrefix) {
        String image = node.getImage();
        if (image != null && image.endsWith(".getComponentFactory")) {
            addViolationWithMessage(data, node, "Only UIMap related classes are allowed to access a GUI Component Factory");
        }
    }

    return super.visit(node, data);
}
 
开发者ID:AludraTest,项目名称:aludratest,代码行数:12,代码来源:OnlyUIMapsConstructGUIComponent.java


注:本文中的net.sourceforge.pmd.lang.java.ast.ASTPrimaryPrefix类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。