Rename all 'com.githib.kdvolder' packages to something better

This commit is contained in:
Kris De Volder
2016-09-13 16:32:41 -07:00
parent 94a38b7ab7
commit 79840420e8
23 changed files with 34 additions and 34 deletions

View File

@@ -88,7 +88,7 @@ export function activate(context: VSCode.ExtensionContext) {
let args = [
'-Dserver.port=' + port,
'-cp', classpath,
'com.github.kdvolder.lsapi.example.Main'
'org.springframework.ide.vscode.yaml.Main'
];
if (DEBUG) {
args.unshift(DEBUG_ARG);

View File

@@ -1,4 +1,4 @@
package com.github.kdvolder.lsapi.util;
package org.springframework.ide.vscode.util;
public class Assert {

View File

@@ -1,4 +1,4 @@
package com.github.kdvolder.lsapi.util;
package org.springframework.ide.vscode.util;
import java.util.concurrent.CompletableFuture;

View File

@@ -1,4 +1,4 @@
package com.github.kdvolder.lsapi.util;
package org.springframework.ide.vscode.util;
import java.util.concurrent.CompletableFuture;

View File

@@ -1,4 +1,4 @@
package com.github.kdvolder.lsapi.util;
package org.springframework.ide.vscode.util;
import java.util.concurrent.CompletableFuture;

View File

@@ -1,4 +1,4 @@
package com.github.kdvolder.lsapi.util;
package org.springframework.ide.vscode.util;
import java.io.IOException;
import java.nio.file.Path;

View File

@@ -1,4 +1,4 @@
package com.github.kdvolder.lsapi.util;
package org.springframework.ide.vscode.util;
import java.util.ArrayList;
import java.util.List;

View File

@@ -1,4 +1,4 @@
package com.github.kdvolder.lsapi.util;
package org.springframework.ide.vscode.util;
import java.io.IOException;
import java.io.PrintWriter;

View File

@@ -1,4 +1,4 @@
package com.github.kdvolder.lsapi.util;
package org.springframework.ide.vscode.util;
import io.typefox.lsapi.MessageParams;
import io.typefox.lsapi.MessageParamsImpl;

View File

@@ -1,4 +1,4 @@
package com.github.kdvolder.lsapi.util;
package org.springframework.ide.vscode.util;
import java.nio.file.Path;
import java.nio.file.Paths;

View File

@@ -1,4 +1,4 @@
package com.github.kdvolder.lsapi.util;
package org.springframework.ide.vscode.util;
import java.util.ArrayList;
import java.util.Collection;

View File

@@ -1,4 +1,4 @@
package com.github.kdvolder.lsapi.util;
package org.springframework.ide.vscode.util;
import java.util.List;
import java.util.concurrent.CompletableFuture;

View File

@@ -1,4 +1,4 @@
package com.github.kdvolder.lsapi.util;
package org.springframework.ide.vscode.util;
import io.typefox.lsapi.Range;
import io.typefox.lsapi.TextDocumentContentChangeEvent;

View File

@@ -1,4 +1,4 @@
package com.github.kdvolder.lsapi.util;
package org.springframework.ide.vscode.util;
import io.typefox.lsapi.TextDocumentContentChangeEvent;

View File

@@ -1,4 +1,4 @@
package com.github.kdvolder.lsapi.example;
package org.springframework.ide.vscode.yaml;
public class ErrorCodes {
public static final String YAML_SYNTAX_ERROR = "YAML_SYNTAX_ERROR";

View File

@@ -1,4 +1,4 @@
package com.github.kdvolder.lsapi.example;
package org.springframework.ide.vscode.yaml;
import java.io.IOException;
import java.io.InputStream;
@@ -10,7 +10,7 @@ import java.util.concurrent.ExecutionException;
import java.util.logging.Level;
import java.util.logging.Logger;
import com.github.kdvolder.lsapi.util.LoggingFormat;
import org.springframework.ide.vscode.util.LoggingFormat;
import io.typefox.lsapi.services.json.LoggingJsonAdapter;

View File

@@ -1,4 +1,4 @@
package com.github.kdvolder.lsapi.example;
package org.springframework.ide.vscode.yaml;
import java.io.StringReader;
import java.util.ArrayList;
@@ -6,15 +6,15 @@ import java.util.Iterator;
import java.util.List;
import java.util.concurrent.CompletableFuture;
import org.springframework.ide.vscode.util.Futures;
import org.springframework.ide.vscode.util.SimpleLanguageServer;
import org.springframework.ide.vscode.util.SimpleTextDocumentService;
import org.springframework.ide.vscode.util.TextDocument;
import org.yaml.snakeyaml.Yaml;
import org.yaml.snakeyaml.error.MarkedYAMLException;
import org.yaml.snakeyaml.error.YAMLException;
import org.yaml.snakeyaml.nodes.Node;
import com.github.kdvolder.lsapi.util.Futures;
import com.github.kdvolder.lsapi.util.SimpleLanguageServer;
import com.github.kdvolder.lsapi.util.SimpleTextDocumentService;
import com.github.kdvolder.lsapi.util.TextDocument;
import com.google.common.collect.ImmutableList;
import io.typefox.lsapi.CompletionItem;

View File

@@ -1,4 +1,4 @@
package com.github.kdvolder.lsapi.testharness;
package org.springframework.ide.vscode.testharness;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.fail;

View File

@@ -1,4 +1,4 @@
package com.github.kdvolder.lsapi.testharness;
package org.springframework.ide.vscode.testharness;
import java.io.File;
import java.nio.charset.Charset;

View File

@@ -1,4 +1,4 @@
package com.github.kdvolder.lsapi.testharness;
package org.springframework.ide.vscode.testharness;
import java.util.ArrayList;
import java.util.List;

View File

@@ -1,9 +1,9 @@
package com.github.kdvolder.lsapi.example;
package org.springframework.ide.vscode.yaml;
import org.junit.Test;
import com.github.kdvolder.lsapi.testharness.Editor;
import com.github.kdvolder.lsapi.testharness.LanguageServerHarness;
import org.springframework.ide.vscode.testharness.Editor;
import org.springframework.ide.vscode.testharness.LanguageServerHarness;
import org.springframework.ide.vscode.yaml.YamlLanguageServer;
/**
* This class is a placeholder where we will attempt to copy and port

View File

@@ -1,4 +1,4 @@
package com.github.kdvolder.lsapi.example;
package org.springframework.ide.vscode.yaml;
import static org.assertj.core.api.Assertions.assertThat;
@@ -8,9 +8,9 @@ import java.nio.file.Paths;
import java.util.List;
import org.junit.Test;
import com.github.kdvolder.lsapi.testharness.LanguageServerHarness;
import com.github.kdvolder.lsapi.testharness.TextDocumentInfo;
import org.springframework.ide.vscode.testharness.LanguageServerHarness;
import org.springframework.ide.vscode.testharness.TextDocumentInfo;
import org.springframework.ide.vscode.yaml.YamlLanguageServer;
import io.typefox.lsapi.CompletionItem;
import io.typefox.lsapi.CompletionList;