mirror of
https://github.com/processing/processing4.git
synced 2026-01-24 17:01:06 +01:00
Removed unsued files
This commit is contained in:
@@ -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")
|
||||
}
|
||||
}
|
||||
@@ -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")
|
||||
}
|
||||
}
|
||||
@@ -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")
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user