Example usage for org.eclipse.jdt.core.dom ASTNode properties

List of usage examples for org.eclipse.jdt.core.dom ASTNode properties

Introduction

In this page you can find the example usage for org.eclipse.jdt.core.dom ASTNode properties.

Prototype

public final Map properties() 

Source Link

Document

Returns an unmodifiable table of the properties of this node with non-null values.

Usage

From source file:com.google.devtools.j2objc.util.ASTUtil.java

License:Apache License

@SuppressWarnings("unchecked")
public static Map<String, Object> getProperties(ASTNode node) {
    return node.properties();
}