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

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

Introduction

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

License:Apache License

/** Visitor method for {@link Modifier}s. */
@Override//from w w  w  .  j  a v a  2s  . c  o  m
public boolean visit(Modifier node) {
    sync(node);
    token(node.toString());
    return false;
}