Skip navigation links

Introduction

This document lists changes made to the LSP APIs. Please ask on the dev@netbeans.apache.org mailing list if you have any questions about the details of a change, or are wondering how to convert existing code to be compatible.


Index of APIs

Incompatible changes by date

Fuller descriptions of all changes can be found below (follow links).

Not all deprecations are listed here, assuming that the deprecated APIs continue to essentially work. For a full deprecation list, please consult the Javadoc.

All changes by date

Changes by version

These API specification versions may be used to indicate that a module requires a certain API feature in order to function. For example, if you see here a feature you need which is labelled 1.20, your manifest should contain in its main attributes the line:

OpenIDE-Module-Module-Dependencies: org.netbeans.api.lsp/1 > 1.20

Changes by affected class

org.netbeans.api.lsp.CallHierarchyEntry

org.netbeans.spi.lsp.CallHierarchyProvider

org.netbeans.api.lsp.ErrorProvider

org.netbeans.api.lsp.Hover

org.netbeans.spi.lsp.HoverProvider

org.netbeans.spi.lsp.HyperlinkTypeDefLocationProvider

org.netbeans.api.lsp.StructureElement

org.netbeans.spi.lsp.StructureProvider


Details of all changes by API and date


LSP APIs

Added CallHierarchyProvider and relevant elements

Mar 9 '22; API spec. version: 1.9; affected top-level classes: CallHierarchyEntry CallHierarchyProvider; made by: sdedic
CallHierarchyProvider SPI allows to trace incoming and outgoing calls. CallHierarchyEntry describes a specific call site or target.

Adding StructeProvider and StructureElement

Jan 24 '22; API spec. version: 1.8; affected top-level classes: StructureElement StructureProvider; made by: ppisl
A StructureProvider interface allows to compute structure (tree of SourceElements) of the given file.

Adding ErrorProvider.Context.getOffset() method

Jun 21 '21; API spec. version: 1.4; affected top-level classes: ErrorProvider; made by: balek
An ErrorProvider.Context.getOffset() method introduced that allows to compute hint for a given file offset.

Adding ErrorProvider

Jun 10 '21; API spec. version: 1.3; affected top-level classes: ErrorProvider; made by: jlahoda
An ErrorProvider interface introduced that allows to compute errors/warnings for a given file.

Adding Hover and HoverProvider

May 13 '21; API spec. version: 1.2; affected top-level classes: Hover HoverProvider; made by: dbalek
A Hover class and HoverProvider interface introduced that allows to resolve a hover information at a given document offset and return its content.

Adding HyperlinkTypeDefLocationProvider

May 5 '21; API spec. version: 1.1; affected top-level classes: HyperlinkTypeDefLocationProvider; made by: dbalek
A HyperlinkTypeDefLocationProvider interface introduced that allows to compute hyperlinks to type definition locations.