Example usage for org.eclipse.jdt.core.dom TryStatement toString

List of usage examples for org.eclipse.jdt.core.dom TryStatement toString

Introduction

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

Prototype

@Override
public final String toString() 

Source Link

Document

Returns a string representation of this node suitable for debugging purposes only.

Usage

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

License:Apache License

/**
 * try ? ?  ? .//from ww w  .j  a va2s .c  o  m
 * @return   
 */
@Override
public boolean visit(TryStatement node) {
    if (node.getParent().getNodeType() == parentType) {
        addSingleStatement(node.toString(), StatementLine.TRY);
    }
    return super.visit(node);
}