Field declaration node type.
This kind of node collects several variable declaration fragments (VariableDeclarationFragment
) into a single body declaration (BodyDeclaration
), all sharing the same modifiers and base type.
FieldDeclaration: [Javadoc] { ExtendedModifier } Type VariableDeclarationFragment { , VariableDeclarationFragment } ;
When a Javadoc comment is present, the source range begins with the first character of the "/**" comment delimiter. When there is no Javadoc comment, the source range begins with the first character of the initial modifier or type. The source range extends through the last character of the final ";".
@since 2.0
@noinstantiate This class is not intended to be instantiated by clients.