Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 20 additions & 1 deletion org.eclipse.lsp4j/src/main/java/org/eclipse/lsp4j/SymbolTag.java
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,26 @@ public enum SymbolTag {
* <p>This is an LSP <b>proposal</b>. See <a href="https://github.com/microsoft/language-server-protocol/pull/2003">PR</a></p>
*/
@ProtocolDraft
ReadOnly(20);
ReadOnly(20),

/**
* <p>Render a symbol as "overriding", e.g. a Java method replaces the implementation from an
* equally named method (with same signature) from a parent class.</p>
*
* <p>This is an LSP <b>proposal</b>. See <a href="https://github.com/microsoft/language-server-protocol/pull/2003">PR</a></p>
*/
@ProtocolDraft
Overrides(21),

/**
* <p>Render a symbol as "implementing", e.g. a Java method implements a method with same signature declared in an
* interface or implements an abstract method (with same signature) from an abstract parent class.</p>
*
* <p>This is an LSP <b>proposal</b>. See <a href="https://github.com/microsoft/language-server-protocol/pull/2003">PR</a></p>
*/
@ProtocolDraft
Implements(22);


private final int value;

Expand Down
Loading