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

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

Introduction

In this page you can find the example usage for org.eclipse.jdt.core.dom SwitchStatement 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

/**
 * switch ? ?  ? ./*from   w  ww . j  a v a2s .co m*/
 * @return   
 */
@Override
public boolean visit(SwitchStatement node) {
    if (node.getParent().getNodeType() == parentType) {
        addSingleStatement(node.toString(), StatementLine.SWITCH);
    }
    return super.visit(node);
}