List of usage examples for org.eclipse.jdt.core.dom SynchronizedStatement getParent
public final ASTNode getParent()
null if this is the root node. From source file:egovframework.mgt.fit.library.parser.visitor.StatementParsingVisitor.java
License:Apache License
/** * ? ? ? ? ./*from ww w .java 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); }