Removed unsued files

This commit is contained in:
Stef Tervelde
2025-03-11 09:31:53 +01:00
parent 8de4575c6d
commit 619f894002
3 changed files with 0 additions and 71 deletions

View File

@@ -1,35 +0,0 @@
import org.eclipse.lsp4j.InitializeParams
import org.eclipse.lsp4j.InitializeResult
import org.eclipse.lsp4j.services.LanguageServer
import org.eclipse.lsp4j.services.TextDocumentService
import org.eclipse.lsp4j.services.WorkspaceService
import java.util.concurrent.CompletableFuture
class PDELanguageServer: LanguageServer {
companion object{
fun main( args: Array<String>){
}
}
override fun initialize(params: InitializeParams?): CompletableFuture<InitializeResult> {
TODO("Not yet implemented")
}
override fun shutdown(): CompletableFuture<Any> {
TODO("Not yet implemented")
}
override fun exit() {
TODO("Not yet implemented")
}
override fun getTextDocumentService(): TextDocumentService {
return PDETextDocumentService()
}
override fun getWorkspaceService(): WorkspaceService {
TODO("Not yet implemented")
}
}

View File

@@ -1,23 +0,0 @@
import org.eclipse.lsp4j.DidChangeTextDocumentParams
import org.eclipse.lsp4j.DidCloseTextDocumentParams
import org.eclipse.lsp4j.DidOpenTextDocumentParams
import org.eclipse.lsp4j.DidSaveTextDocumentParams
import org.eclipse.lsp4j.services.TextDocumentService
class PDETextDocumentService: TextDocumentService {
override fun didOpen(params: DidOpenTextDocumentParams?) {
TODO("Not yet implemented")
}
override fun didChange(params: DidChangeTextDocumentParams?) {
TODO("Not yet implemented")
}
override fun didClose(params: DidCloseTextDocumentParams?) {
TODO("Not yet implemented")
}
override fun didSave(params: DidSaveTextDocumentParams?) {
TODO("Not yet implemented")
}
}

View File

@@ -1,13 +0,0 @@
import org.eclipse.lsp4j.DidChangeConfigurationParams
import org.eclipse.lsp4j.DidChangeWatchedFilesParams
import org.eclipse.lsp4j.services.WorkspaceService
class PDEWorkspaceService: WorkspaceService {
override fun didChangeConfiguration(params: DidChangeConfigurationParams?) {
TODO("Not yet implemented")
}
override fun didChangeWatchedFiles(params: DidChangeWatchedFilesParams?) {
TODO("Not yet implemented")
}
}