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

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

Introduction

In this page you can find the example usage for org.eclipse.jdt.core.dom Expression 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:org.eclipse.wb.internal.core.model.JavaInfoEvaluationHelper.java

License:Open Source License

/**
 * @return <code>true</code> if given {@link Expression} has value property.
 *//*from w w w . j a  v  a2s  .c om*/
public static boolean hasValue(Expression expression) {
    return expression.properties().containsKey(KEY_EXPRESSION_VALUE);
}