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

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

Introduction

In this page you can find the example usage for org.eclipse.jdt.core.dom NullLiteral 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 NullLiteral}s. */
@Override//  w w w . ja  va  2s .c o m
public boolean visit(NullLiteral node) {
    sync(node);
    token(node.toString());
    return false;
}

From source file:org.jboss.windup.decorator.java.JavaASTAnnotationVisitor.java

License:Open Source License

protected String extract(NullLiteral value) {
    return value.toString();
}