File tree Expand file tree Collapse file tree
org.eclipse.lsp4j/src/main/java/org/eclipse/lsp4j Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -178,7 +178,26 @@ public enum SymbolTag {
178178 * <p>This is an LSP <b>proposal</b>. See <a href="https://github.com/microsoft/language-server-protocol/pull/2003">PR</a></p>
179179 */
180180 @ ProtocolDraft
181- ReadOnly (20 );
181+ ReadOnly (20 ),
182+
183+ /**
184+ * <p>Render a symbol as "overriding", e.g. a Java method replaces the implementation from an
185+ * equally named method (with same signature) from a parent class.</p>
186+ *
187+ * <p>This is an LSP <b>proposal</b>. See <a href="https://github.com/microsoft/language-server-protocol/pull/2003">PR</a></p>
188+ */
189+ @ ProtocolDraft
190+ Overrides (21 ),
191+
192+ /**
193+ * <p>Render a symbol as "implementing", e.g. a Java method implements a method with same signature declared in an
194+ * interface or implements an abstract method (with same signature) from an abstract parent class.</p>
195+ *
196+ * <p>This is an LSP <b>proposal</b>. See <a href="https://github.com/microsoft/language-server-protocol/pull/2003">PR</a></p>
197+ */
198+ @ ProtocolDraft
199+ Implements (22 );
200+
182201
183202 private final int value ;
184203
You can’t perform that action at this time.
0 commit comments