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

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

Introduction

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

License:Open Source License

@Override
public boolean visit(LineComment node) {
    nextComment = nextComment + node.toString();
    addcomment = true;
    return false;
}