org.eclipse.lsp4j.jsonrpc.services.JsonDelegate Java Examples

The following examples show how to use org.eclipse.lsp4j.jsonrpc.services.JsonDelegate. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: JDTLanguageServer.java    From eclipse.jdt.ls with Eclipse Public License 2.0 4 votes vote down vote up
@JsonDelegate
public JavaProtocolExtensions getJavaExtensions() {
	return this;
}
 
Example #2
Source File: SyntaxLanguageServer.java    From eclipse.jdt.ls with Eclipse Public License 2.0 4 votes vote down vote up
@JsonDelegate
public IExtendedProtocol getExtendedService() {
	return this;
}
 
Example #3
Source File: EndpointsTest.java    From lsp4j with Eclipse Public License 2.0 4 votes vote down vote up
@JsonDelegate
public Delegated getDelegate();
 
Example #4
Source File: EndpointsTest.java    From lsp4j with Eclipse Public License 2.0 4 votes vote down vote up
@JsonDelegate
public BarDelegated getDelegate2();
 
Example #5
Source File: GenericEndpointTest.java    From lsp4j with Eclipse Public License 2.0 4 votes vote down vote up
@JsonDelegate
public OtherThing doDelegate();
 
Example #6
Source File: ISarosLanguageServer.java    From saros with GNU General Public License v2.0 4 votes vote down vote up
/** Provides access to the account services. */
@JsonDelegate
IAccountService getSarosAccountService();
 
Example #7
Source File: LanguageServer.java    From lsp4j with Eclipse Public License 2.0 2 votes vote down vote up
/**
 * Provides access to the textDocument services.
 */
@JsonDelegate
TextDocumentService getTextDocumentService();
 
Example #8
Source File: LanguageServer.java    From lsp4j with Eclipse Public License 2.0 2 votes vote down vote up
/**
 * Provides access to the workspace services.
 */
@JsonDelegate
WorkspaceService getWorkspaceService();