Top Description Methods
com.sun.source.util

public Interface ParameterNameProvider

Imports
javax.lang.model.element.VariableElement

A provider for parameter names when the parameter names are not determined from a reliable source, like a classfile.
Since
13

Method Summary

Modifier and TypeMethod and Description
public CharSequence

Returns:

a user-friendly name for the parameter, or null if unknown
getParameterName
(VariableElement
the parameter for which the name should be inferred
parameter
)

Infer a parameter name for the given parameter.

Method Detail

getParameterNameback to summary
public CharSequence getParameterName(VariableElement parameter)

Infer a parameter name for the given parameter. The implementations of this method should infer parameter names in such a way that the parameter names are distinct for any given owning method. If the implementation of this method returns null, an automatically synthesized name is used.

Parameters
parameter:VariableElement

the parameter for which the name should be inferred

Returns:CharSequence

a user-friendly name for the parameter, or null if unknown