Example usage for org.eclipse.jdt.core.dom EnumConstantDeclaration ANONYMOUS_CLASS_DECLARATION_PROPERTY

List of usage examples for org.eclipse.jdt.core.dom EnumConstantDeclaration ANONYMOUS_CLASS_DECLARATION_PROPERTY

Introduction

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

Prototype

ChildPropertyDescriptor ANONYMOUS_CLASS_DECLARATION_PROPERTY

To view the source code for org.eclipse.jdt.core.dom EnumConstantDeclaration ANONYMOUS_CLASS_DECLARATION_PROPERTY.

Click Source Link

Document

The "anonymousClassDeclaration" structural property of this node type (child type: AnonymousClassDeclaration ).

Usage

From source file:org.eclipse.emf.codegen.merge.java.facade.ast.ASTJEnumConstant.java

License:Open Source License

public void setBody(String body) {
    this.body = body;
    setTrackedNodeProperty(getASTNode(), body, EnumConstantDeclaration.ANONYMOUS_CLASS_DECLARATION_PROPERTY,
            ASTNode.ANONYMOUS_CLASS_DECLARATION);
}