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 boolean
equals(java.lang.Object obj)
int
hashCode()
boolean
isRetry()
Indicates whether the client executes the following retry logic: Show the message provided by the ResponseError to the user.void
setRetry(boolean retry)
Indicates whether the client executes the following retry logic: Show the message provided by the ResponseError to the user.java.lang.String
toString()
-
-
-
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:
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
-
-