Package org.eclipse.lsp4j
Class MessageActionItem
- java.lang.Object
-
- org.eclipse.lsp4j.MessageActionItem
-
public class MessageActionItem extends java.lang.ObjectThe 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 booleanequals(java.lang.Object obj)java.lang.StringgetTitle()A short title like 'Retry', 'Open Log' etc.inthashCode()voidsetTitle(java.lang.String title)A short title like 'Retry', 'Open Log' etc.java.lang.StringtoString()
-
-
-
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:
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
-
-