Package org.eclipse.lsp4j
Class WorkspaceEditChangeAnnotationSupportCapabilities
- java.lang.Object
-
- org.eclipse.lsp4j.WorkspaceEditChangeAnnotationSupportCapabilities
-
public class WorkspaceEditChangeAnnotationSupportCapabilities extends java.lang.Object
Whether the client in general supports change annotations on text edits, create file, rename file and delete file changes.Since 3.16.0
-
-
Constructor Summary
Constructors Constructor Description WorkspaceEditChangeAnnotationSupportCapabilities()
WorkspaceEditChangeAnnotationSupportCapabilities(java.lang.Boolean groupsOnLabel)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object obj)
java.lang.Boolean
getGroupsOnLabel()
Whether the client groups edits with equal labels into tree nodes, for instance all edits labelled with "Changes in Strings" would be a tree node.int
hashCode()
void
setGroupsOnLabel(java.lang.Boolean groupsOnLabel)
Whether the client groups edits with equal labels into tree nodes, for instance all edits labelled with "Changes in Strings" would be a tree node.java.lang.String
toString()
-
-
-
Method Detail
-
getGroupsOnLabel
public java.lang.Boolean getGroupsOnLabel()
Whether the client groups edits with equal labels into tree nodes, for instance all edits labelled with "Changes in Strings" would be a tree node.
-
setGroupsOnLabel
public void setGroupsOnLabel(java.lang.Boolean groupsOnLabel)
Whether the client groups edits with equal labels into tree nodes, for instance all edits labelled with "Changes in Strings" would be a tree node.
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
-