Example usage for org.eclipse.jdt.core.dom WhileStatement getParent

List of usage examples for org.eclipse.jdt.core.dom WhileStatement getParent

Introduction

In this page you can find the example usage for org.eclipse.jdt.core.dom WhileStatement getParent.

Prototype

public final ASTNode getParent() 

Source Link

Document

Returns this node's parent node, or null if this is the root node.

Usage

From source file:egovframework.mgt.fit.library.parser.visitor.StatementParsingVisitor.java

License:Apache License

/**
 * while ? ?  ? ./*  w  w w . ja v a2s.c o m*/
 * @return   
 */
@Override
public boolean visit(WhileStatement node) {
    if (node.getParent().getNodeType() == parentType) {
        addSingleStatement(node.toString(), StatementLine.WHILE);
    }
    return super.visit(node);
}