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

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

Introduction

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

/**
 * ? ? ?  ? ./*from  w w  w  . j a v a  2  s .c  o  m*/
 * @return   
 */
@Override
public boolean visit(SynchronizedStatement node) {
    if (node.getParent().getNodeType() == parentType) {
        addSingleStatement(node.toString(), StatementLine.SYNCHRONIZED);
    }
    return super.visit(node);
}