Package org.eclipse.lsp4j
Class MessageActionItem
- java.lang.Object
-
- org.eclipse.lsp4j.MessageActionItem
-
public class MessageActionItem extends java.lang.Object
The show message request is sent from a server to a client to ask the client to display a particular message in the user class. In addition to the show message notification the request allows to pass actions and to wait for an answer from the client.
-
-
Constructor Summary
Constructors Constructor Description MessageActionItem()
MessageActionItem(java.lang.String title)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object obj)
java.lang.String
getTitle()
A short title like 'Retry', 'Open Log' etc.int
hashCode()
void
setTitle(java.lang.String title)
A short title like 'Retry', 'Open Log' etc.java.lang.String
toString()
-
-
-
Method Detail
-
getTitle
public java.lang.String getTitle()
A short title like 'Retry', 'Open Log' etc.
-
setTitle
public void setTitle(java.lang.String title)
A short title like 'Retry', 'Open Log' etc.
-
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
-
-