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

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

Introduction

In this page you can find the example usage for org.eclipse.jdt.core.dom CatchClause 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:org.eclipse.recommenders.codesearch.rcp.index.indexer.FullTextIndexer.java

License:Open Source License

@Override
public void indexTryCatchBlock(final Document document, final TryStatement tryStatement,
        final CatchClause catchClause) {
    CodeIndexer.addFieldToDocument(document, Fields.FULL_TEXT, catchClause.toString().trim());
}