Package org.eclipse.lsp4j
Class InitializeError
- java.lang.Object
-
- org.eclipse.lsp4j.InitializeError
-
public class InitializeError extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description InitializeError()InitializeError(boolean retry)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)inthashCode()booleanisRetry()Indicates whether the client executes the following retry logic: Show the message provided by the ResponseError to the user.voidsetRetry(boolean retry)Indicates whether the client executes the following retry logic: Show the message provided by the ResponseError to the user.java.lang.StringtoString()
-
-
-
Method Detail
-
isRetry
public boolean isRetry()
Indicates whether the client executes the following retry logic:- Show the message provided by the ResponseError to the user.
- User selects retry or cancel.
- If user selected retry the initialize method is sent again.
-
setRetry
public void setRetry(boolean retry)
Indicates whether the client executes the following retry logic:- Show the message provided by the ResponseError to the user.
- User selects retry or cancel.
- If user selected retry the initialize method is sent again.
-
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
-
-