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

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

Introduction

In this page you can find the example usage for org.eclipse.jdt.core.dom TextElement 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:com.servoy.eclipse.docgenerator.parser.JavadocExtractor.java

License:Open Source License

@Override
public boolean visit(TextElement node) {
    storeWhitespaceIfAny(node, -1);//from w w w  . j av  a 2  s  . c o m

    JavadocTextPart newEntry = new JavadocTextPart(node.toString());
    javadocsStack.peek().addPart(newEntry);

    return false;
}