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


Java Node.hasComment方法代码示例

本文整理汇总了Java中com.github.javaparser.ast.Node.hasComment方法的典型用法代码示例。如果您正苦于以下问题:Java Node.hasComment方法的具体用法?Java Node.hasComment怎么用?Java Node.hasComment使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在com.github.javaparser.ast.Node的用法示例。


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

示例1: attributeLineCommentToNodeOrChild

import com.github.javaparser.ast.Node; //导入方法依赖的package包/类
private boolean attributeLineCommentToNodeOrChild(Node node, LineComment lineComment) {
    // The node start and end at the same line as the comment,
    // let's give to it the comment
    if (node.getBegin().line == lineComment.getBegin().line
            && !node.hasComment()) {
        if(!(node instanceof Comment)) {
            node.setComment(lineComment);
        }
        return true;
    } else {
        // try with all the children, sorted by reverse position (so the
        // first one is the nearest to the comment
        List<Node> children = new LinkedList<Node>();
        children.addAll(node.getChildrenNodes());
        PositionUtils.sortByBeginPosition(children);
        Collections.reverse(children);

        for (Node child : children) {
            if (attributeLineCommentToNodeOrChild(child, lineComment)) {
                return true;
            }
        }

        return false;
    }
}
 
开发者ID:javaparser,项目名称:javasymbolsolver,代码行数:27,代码来源:CommentsInserter.java

示例2: attributeLineCommentToNodeOrChild

import com.github.javaparser.ast.Node; //导入方法依赖的package包/类
private static boolean attributeLineCommentToNodeOrChild(Node node, LineComment lineComment)
{
    // The node start and end at the same line as the comment,
    // let's give to it the comment
    if (node.getBeginLine()==lineComment.getBeginLine() && !node.hasComment())
    {
        node.setComment(lineComment);
        return true;
    } else {
        // try with all the children, sorted by reverse position (so the
        // first one is the nearest to the comment
        List<Node> children = new LinkedList<Node>();
        children.addAll(node.getChildrenNodes());
        PositionUtils.sortByBeginPosition(children);
        Collections.reverse(children);

        for (Node child : children)
        {
            if (attributeLineCommentToNodeOrChild(child, lineComment))
            {
                return true;
            }
        }

        return false;
    }
}
 
开发者ID:plum-umd,项目名称:java-sketch,代码行数:28,代码来源:JavaParser.java


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