summaryrefslogtreecommitdiff
path: root/src/main/java/org/javacs/lsp/LanguageServer.java
blob: 169973e891a9df365ecc202e8e9ad29fa21efdf7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
package org.javacs.lsp;

import java.util.List;
import java.util.Optional;

public class LanguageServer {
    public InitializeResult initialize(InitializeParams params) {
        throw new RuntimeException("Unimplemented");
    }

    public void initialized() {
        throw new RuntimeException("Unimplemented");
    }

    public void shutdown() {
        throw new RuntimeException("Unimplemented");
    }

    public void didChangeConfiguration(DidChangeConfigurationParams params) {
        throw new RuntimeException("Unimplemented");
    }

    public void didOpenTextDocument(DidOpenTextDocumentParams params) {
        throw new RuntimeException("Unimplemented");
    }

    public void didChangeTextDocument(DidChangeTextDocumentParams params) {
        throw new RuntimeException("Unimplemented");
    }

    public void willSaveTextDocument(WillSaveTextDocumentParams params) {
        throw new RuntimeException("Unimplemented");
    }

    public List<TextEdit> willSaveWaitUntilTextDocument(WillSaveTextDocumentParams params) {
        throw new RuntimeException("Unimplemented");
    }

    public void didSaveTextDocument(DidSaveTextDocumentParams params) {
        throw new RuntimeException("Unimplemented");
    }

    public void didCloseTextDocument(DidCloseTextDocumentParams params) {
        throw new RuntimeException("Unimplemented");
    }

    public void didChangeWatchedFiles(DidChangeWatchedFilesParams params) {
        throw new RuntimeException("Unimplemented");
    }

    public Optional<CompletionList> completion(TextDocumentPositionParams params) {
        throw new RuntimeException("Unimplemented");
    }

    public CompletionItem resolveCompletionItem(CompletionItem params) {
        throw new RuntimeException("Unimplemented");
    }

    public Optional<Hover> hover(TextDocumentPositionParams params) {
        throw new RuntimeException("Unimplemented");
    }

    public Optional<SignatureHelp> signatureHelp(TextDocumentPositionParams params) {
        throw new RuntimeException("Unimplemented");
    }

    public Optional<List<Location>> gotoDefinition(TextDocumentPositionParams params) {
        throw new RuntimeException("Unimplemented");
    }

    public Optional<List<Location>> findReferences(ReferenceParams params) {
        throw new RuntimeException("Unimplemented");
    }

    public List<SymbolInformation> documentSymbol(DocumentSymbolParams params) {
        throw new RuntimeException("Unimplemented");
    }

    public List<SymbolInformation> workspaceSymbols(WorkspaceSymbolParams params) {
        throw new RuntimeException("Unimplemented");
    }

    public List<Command> codeAction(CodeActionParams params) {
        throw new RuntimeException("Unimplemented");
    }

    public List<CodeLens> codeLens(CodeLensParams params) {
        throw new RuntimeException("Unimplemented");
    }

    public CodeLens resolveCodeLens(CodeLens params) {
        throw new RuntimeException("Unimplemented");
    }

    public Optional<RenameResponse> prepareRename(TextDocumentPositionParams params) {
        throw new RuntimeException("Unimplemented");
    }

    public WorkspaceEdit rename(RenameParams params) {
        throw new RuntimeException("Unimplemented");
    }

    public void didChangeWorkspaceFolders(DidChangeWorkspaceFoldersParams params) {
        throw new RuntimeException("Unimplemented");
    }

    public List<TextEdit> formatting(DocumentFormattingParams params) {
        throw new RuntimeException("Unimplemented");
    }

    public List<FoldingRange> foldingRange(FoldingRangeParams params) {
        throw new RuntimeException("Unimplemented");
    }

    public List<DocumentLink> documentLink(DocumentLinkParams params) {
        throw new RuntimeException("Unimplemented");
    }
}