-
Notifications
You must be signed in to change notification settings - Fork 409
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merges the new LSP and takes the new framework to use on all the handlers.
- Loading branch information
Showing
55 changed files
with
1,110 additions
and
1,742 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
38 changes: 38 additions & 0 deletions
38
server/org.jboss.tools.vscode.ipc/src/org/jboss/tools/langs/CodeLensParams.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
|
||
package org.jboss.tools.langs; | ||
|
||
import javax.annotation.Generated; | ||
import com.google.gson.annotations.Expose; | ||
import com.google.gson.annotations.SerializedName; | ||
|
||
@Generated("org.jsonschema2pojo") | ||
public class CodeLensParams { | ||
|
||
@SerializedName("textDocument") | ||
@Expose | ||
private TextDocumentIdentifier textDocument; | ||
|
||
/** | ||
* | ||
* @return | ||
* The textDocument | ||
*/ | ||
public TextDocumentIdentifier getTextDocument() { | ||
return textDocument; | ||
} | ||
|
||
/** | ||
* | ||
* @param textDocument | ||
* The textDocument | ||
*/ | ||
public void setTextDocument(TextDocumentIdentifier textDocument) { | ||
this.textDocument = textDocument; | ||
} | ||
|
||
public CodeLensParams withTextDocument(TextDocumentIdentifier textDocument) { | ||
this.textDocument = textDocument; | ||
return this; | ||
} | ||
|
||
} |
44 changes: 44 additions & 0 deletions
44
server/org.jboss.tools.vscode.ipc/src/org/jboss/tools/langs/ReferenceContext.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
|
||
package org.jboss.tools.langs; | ||
|
||
import javax.annotation.Generated; | ||
import com.google.gson.annotations.Expose; | ||
import com.google.gson.annotations.SerializedName; | ||
|
||
@Generated("org.jsonschema2pojo") | ||
public class ReferenceContext { | ||
|
||
/** | ||
* Include the declaration of the current symbol. | ||
* | ||
*/ | ||
@SerializedName("includeDeclaration") | ||
@Expose | ||
private Boolean includeDeclaration; | ||
|
||
/** | ||
* Include the declaration of the current symbol. | ||
* | ||
* @return | ||
* The includeDeclaration | ||
*/ | ||
public Boolean getIncludeDeclaration() { | ||
return includeDeclaration; | ||
} | ||
|
||
/** | ||
* Include the declaration of the current symbol. | ||
* | ||
* @param includeDeclaration | ||
* The includeDeclaration | ||
*/ | ||
public void setIncludeDeclaration(Boolean includeDeclaration) { | ||
this.includeDeclaration = includeDeclaration; | ||
} | ||
|
||
public ReferenceContext withIncludeDeclaration(Boolean includeDeclaration) { | ||
this.includeDeclaration = includeDeclaration; | ||
return this; | ||
} | ||
|
||
} |
Oops, something went wrong.