Package org.eclipse.lsp4j
Class PrepareRenameDefaultBehavior
- java.lang.Object
-
- org.eclipse.lsp4j.PrepareRenameDefaultBehavior
-
public class PrepareRenameDefaultBehavior extends java.lang.ObjectOne of the result types of the `textDocument/prepareRename` request. Indicates that the client should use its default behavior to compute the rename range.Since 3.16.0
-
-
Constructor Summary
Constructors Constructor Description PrepareRenameDefaultBehavior()PrepareRenameDefaultBehavior(boolean defaultBehavior)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)inthashCode()booleanisDefaultBehavior()Indicates that the client should use its default behavior to compute the rename range.voidsetDefaultBehavior(boolean defaultBehavior)Indicates that the client should use its default behavior to compute the rename range.java.lang.StringtoString()
-
-
-
Method Detail
-
isDefaultBehavior
public boolean isDefaultBehavior()
Indicates that the client should use its default behavior to compute the rename range.
-
setDefaultBehavior
public void setDefaultBehavior(boolean defaultBehavior)
Indicates that the client should use its default behavior to compute the rename range.
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
-