Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2020, 2923 Red Hat Inc. and others.
* Copyright (c) 2020, 2026 Red Hat Inc. and others.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
Expand All @@ -15,13 +15,13 @@
import java.util.concurrent.CompletableFuture;

import org.eclipse.jface.text.IDocument;
import org.eclipse.lsp4e.LanguageClientImpl;
import org.eclipse.lsp4e.client.DefaultLanguageClient;
import org.eclipse.lsp4e.command.CommandExecutor;
import org.eclipse.lsp4j.Command;
import org.eclipse.lsp4j.ExecuteCommandParams;

@SuppressWarnings("restriction")
public class XmlLanguageClientImpl extends LanguageClientImpl implements XMLLanguageClient{
public class XmlLanguageClientImpl extends DefaultLanguageClient implements XMLLanguageClient{

@Override
public CompletableFuture<Object> executeClientCommand(ExecuteCommandParams params) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

import java.util.Map;

import org.eclipse.lsp4e.LanguageClientImpl;
import org.eclipse.lsp4e.client.DefaultLanguageClient;
import org.eclipse.lsp4j.MessageParams;
import org.eclipse.lsp4j.MessageType;

public class AngularClientImpl extends LanguageClientImpl implements AngularLanguageServerExtension {
public class AngularClientImpl extends DefaultLanguageClient implements AngularLanguageServerExtension {

@Override
public void projectLoadingFinish(Object object) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2022 Red Hat Inc. and others.
* Copyright (c) 2022, 2026 Red Hat Inc. and others.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
Expand All @@ -20,7 +20,7 @@
import java.util.List;
import java.util.concurrent.CompletableFuture;

import org.eclipse.lsp4e.LanguageClientImpl;
import org.eclipse.lsp4e.client.DefaultLanguageClient;
import org.eclipse.lsp4j.ConfigurationItem;
import org.eclipse.lsp4j.ConfigurationParams;
import org.eclipse.wildwebdeveloper.css.ui.preferences.CSSPreferenceServerConstants;
Expand All @@ -32,7 +32,7 @@
* CSS language client implementation.
*
*/
public class CSSLanguageClient extends LanguageClientImpl {
public class CSSLanguageClient extends DefaultLanguageClient {

@Override
public CompletableFuture<List<Object>> configuration(ConfigurationParams params) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2020, 2023 Red Hat Inc. and others.
* Copyright (c) 2020, 2026 Red Hat Inc. and others.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
Expand All @@ -21,7 +21,7 @@
import java.util.concurrent.CompletableFuture;

import org.eclipse.core.runtime.ILog;
import org.eclipse.lsp4e.LanguageClientImpl;
import org.eclipse.lsp4e.client.DefaultLanguageClient;
import org.eclipse.lsp4j.ConfigurationItem;
import org.eclipse.lsp4j.ConfigurationParams;
import org.eclipse.lsp4j.MessageParams;
Expand All @@ -32,7 +32,7 @@
import org.eclipse.wildwebdeveloper.jsts.ui.preferences.JSTSPreferenceServerConstants;
import org.eclipse.wildwebdeveloper.util.FileUtils;

public class ESLintClientImpl extends LanguageClientImpl implements ESLintLanguageServerExtension {
public class ESLintClientImpl extends DefaultLanguageClient implements ESLintLanguageServerExtension {

@Override
public CompletableFuture<Integer> confirmESLintExecution(Object param) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2022 Red Hat Inc. and others.
* Copyright (c) 2022, 2026 Red Hat Inc. and others.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
Expand All @@ -19,7 +19,7 @@
import java.util.List;
import java.util.concurrent.CompletableFuture;

import org.eclipse.lsp4e.LanguageClientImpl;
import org.eclipse.lsp4e.client.DefaultLanguageClient;
import org.eclipse.lsp4j.ConfigurationItem;
import org.eclipse.lsp4j.ConfigurationParams;
import org.eclipse.wildwebdeveloper.css.ui.preferences.CSSPreferenceServerConstants;
Expand All @@ -30,7 +30,7 @@
* HTML language client implementation.
*
*/
public class HTMLLanguageClient extends LanguageClientImpl {
public class HTMLLanguageClient extends DefaultLanguageClient {

@Override
public CompletableFuture<List<Object>> configuration(ConfigurationParams params) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2023 Red Hat Inc. and others.
* Copyright (c) 2023, 2026 Red Hat Inc. and others.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
Expand All @@ -14,12 +14,12 @@

import java.util.Map;

import org.eclipse.lsp4e.LanguageClientImpl;
import org.eclipse.lsp4e.client.DefaultLanguageClient;
import org.eclipse.lsp4j.MessageParams;
import org.eclipse.lsp4j.MessageType;
import org.eclipse.lsp4j.jsonrpc.services.JsonNotification;

public class JSTSLanguageClientImpl extends LanguageClientImpl {
public class JSTSLanguageClientImpl extends DefaultLanguageClient {

@JsonNotification(value = "$/typescriptVersion")
public void typescriptVersion(Map<String, String> tsInfo) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2019 Red Hat Inc. and others.
* Copyright (c) 2019, 2026 Red Hat Inc. and others.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
Expand All @@ -15,7 +15,7 @@
import java.util.List;
import java.util.concurrent.CompletableFuture;

import org.eclipse.lsp4e.LanguageClientImpl;
import org.eclipse.lsp4e.client.DefaultLanguageClient;
import org.eclipse.lsp4j.ConfigurationItem;
import org.eclipse.lsp4j.ConfigurationParams;
import org.eclipse.wildwebdeveloper.ui.preferences.Settings;
Expand All @@ -25,7 +25,7 @@
* YAML language client implementation.
*
*/
public class YamlLanguageClientImpl extends LanguageClientImpl {
public class YamlLanguageClientImpl extends DefaultLanguageClient {

@Override
public CompletableFuture<List<Object>> configuration(ConfigurationParams params) {
Expand Down