AST node for a parameter within a method reference ( {@link MethodRef}). These nodes only occur within doc comments ( {@link Javadoc}). For JLS2:
MethodRefParameter: Type [ Identifier ]
For JLS3, the variable arity indicator was added:
MethodRefParameter: Type [ ... ] [ Identifier ]
Note: The 1.5 spec for the Javadoc tool does not mention the possibility of a variable arity indicator in method references. However, the 1.5 Javadoc tool itself does indeed support it. Since it makes sense to have a way to explicitly refer to variable arity methods, it seems more likely that the Javadoc spec is wrong in this case.
@see Javadoc
@since 3.0
@noinstantiate This class is not intended to be instantiated by clients.