Cleaning unused files

This commit is contained in:
Stef Tervelde
2025-02-05 16:46:26 +01:00
parent b42127432d
commit c4caf0f97c
37 changed files with 102 additions and 24559 deletions

View File

@@ -1,30 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="generated"/>
<classpathentry kind="src" path="src"/>
<classpathentry combineaccessrules="false" kind="src" path="/processing4-app"/>
<classpathentry combineaccessrules="false" kind="src" path="/processing4-core"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.launching.macosx.MacOSXType/adoptopenjdk-11">
<attributes>
<attribute name="module" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="lib" path="mode/antlr-4.7.2-complete.jar"/>
<classpathentry kind="lib" path="mode/classpath-explorer-1.0.jar"/>
<classpathentry kind="lib" path="mode/com.ibm.icu.jar"/>
<classpathentry kind="lib" path="mode/jdtCompilerAdapter.jar"/>
<classpathentry kind="lib" path="mode/jsoup-1.7.1.jar"/>
<classpathentry kind="lib" path="mode/org.eclipse.core.contenttype.jar"/>
<classpathentry kind="lib" path="mode/org.eclipse.core.jobs.jar"/>
<classpathentry kind="lib" path="mode/org.eclipse.core.resources.jar"/>
<classpathentry kind="lib" path="mode/org.eclipse.core.runtime.jar"/>
<classpathentry kind="lib" path="mode/org.eclipse.equinox.common.jar"/>
<classpathentry kind="lib" path="mode/org.eclipse.equinox.preferences.jar"/>
<classpathentry kind="lib" path="mode/org.eclipse.jdt.core.jar"/>
<classpathentry kind="lib" path="mode/org.eclipse.osgi.jar"/>
<classpathentry kind="lib" path="mode/org.eclipse.text.jar"/>
<classpathentry kind="lib" path="mode/org.netbeans.swing.outline.jar"/>
<classpathentry kind="lib" path="test/lib/junit-4.13.2.jar"/>
<classpathentry kind="lib" path="test/lib/hamcrest-core-1.3.jar"/>
<classpathentry kind="output" path="bin"/>
</classpath>

View File

@@ -1,12 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<launchConfiguration type="org.eclipse.ant.AntBuilderLaunchConfigurationType">
<booleanAttribute key="org.eclipse.ant.ui.ATTR_TARGETS_UPDATED" value="true"/>
<booleanAttribute key="org.eclipse.ant.ui.DEFAULT_VM_INSTALL" value="false"/>
<booleanAttribute key="org.eclipse.debug.ui.ATTR_LAUNCH_IN_BACKGROUND" value="false"/>
<stringAttribute key="org.eclipse.jdt.launching.CLASSPATH_PROVIDER" value="org.eclipse.ant.ui.AntClasspathProvider"/>
<booleanAttribute key="org.eclipse.jdt.launching.DEFAULT_CLASSPATH" value="true"/>
<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" value="processing-java"/>
<stringAttribute key="org.eclipse.ui.externaltools.ATTR_LOCATION" value="${workspace_loc:/processing-java/build.xml}"/>
<stringAttribute key="org.eclipse.ui.externaltools.ATTR_RUN_BUILD_KINDS" value=""/>
<booleanAttribute key="org.eclipse.ui.externaltools.ATTR_TRIGGERS_CONFIGURED" value="true"/>
</launchConfiguration>

4
java/.gitignore vendored
View File

@@ -1,4 +0,0 @@
reference.zip
bin
bin-test
generated

View File

@@ -1,15 +0,0 @@
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.methodParameters=do not generate
org.eclipse.jdt.core.compiler.codegen.targetPlatform=11
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
org.eclipse.jdt.core.compiler.compliance=11
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
org.eclipse.jdt.core.compiler.debug.localVariable=generate
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=warning
org.eclipse.jdt.core.compiler.release=disabled
org.eclipse.jdt.core.compiler.source=11

View File

@@ -1,11 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.launching.macosx.MacOSXType/adoptopenjdk-11">
<attributes>
<attribute name="module" value="true"/>
</attributes>
</classpathentry>
<classpathentry combineaccessrules="false" kind="src" path="/processing4-core"/>
<classpathentry kind="output" path="bin"/>
</classpath>

View File

@@ -1 +0,0 @@
bin

Binary file not shown.

View File

@@ -0,0 +1,35 @@
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

@@ -0,0 +1,23 @@
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

@@ -0,0 +1,13 @@
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")
}
}