Example usage for org.eclipse.jdt.core.dom Initializer MODIFIERS2_PROPERTY

List of usage examples for org.eclipse.jdt.core.dom Initializer MODIFIERS2_PROPERTY

Introduction

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

Prototype

ChildListPropertyDescriptor MODIFIERS2_PROPERTY

To view the source code for org.eclipse.jdt.core.dom Initializer MODIFIERS2_PROPERTY.

Click Source Link

Document

The "modifiers" structural property of this node type (element type: IExtendedModifier ) (added in JLS3 API).

Usage

From source file:org.moe.natjgen.InitializerEditor.java

License:Apache License

InitializerEditor(AbstractUnitManager manager, Initializer decl) {
    super(manager);
    this.decl = decl;
    this.modifiers = new ModifierEditor(manager, decl, Initializer.MODIFIERS2_PROPERTY, true);
}