Java 类org.eclipse.lsp4j.SaveOptions 实例源码
项目:SOMns-vscode
文件:TextDocumentSyncOptions.java
/**
* Save notifications are sent to the server.
*/
@Pure
public SaveOptions getSave() {
return this.save;
}
项目:SOMns-vscode
文件:TextDocumentSyncOptions.java
/**
* Save notifications are sent to the server.
*/
public void setSave(final SaveOptions save) {
this.save = save;
}
项目:lsp4j
文件:TextDocumentSyncOptions.java
/**
* Save notifications are sent to the server.
*/
@Pure
public SaveOptions getSave() {
return this.save;
}
项目:lsp4j
文件:TextDocumentSyncOptions.java
/**
* Save notifications are sent to the server.
*/
public void setSave(final SaveOptions save) {
this.save = save;
}