Interface SourceCodeAnalysis.Documentation

Enclosing class:
SourceCodeAnalysis

public static interface SourceCodeAnalysis.Documentation
A documentation for a candidate for continuation of the given user's input.
Since:
9
  • Method Summary

    Modifier and Type
    Method
    Description
    default int
    If this Documentation is created for a method invocation, return the current parameter index.
    The javadoc of the given element.
    The signature of the given element.
  • Method Details

    • signature

      String signature()
      The signature of the given element.
      Returns:
      the signature
    • javadoc

      String javadoc()
      The javadoc of the given element.
      Returns:
      the javadoc, or null if not found or not requested
    • activeParameterIndex

      default int activeParameterIndex()
      If this Documentation is created for a method invocation, return the current parameter index.
      Implementation Note:
      the default implementation returns -1
      Returns:
      the active parameter index, or -1 if not available
      Since:
      26