Package org.eclipse.lsp4j.debug
Class SourceResponse
- java.lang.Object
-
- org.eclipse.lsp4j.debug.SourceResponse
-
public class SourceResponse extends java.lang.Object
Response to 'source' request.
-
-
Constructor Summary
Constructors Constructor Description SourceResponse()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object obj)
java.lang.String
getContent()
Content of the source reference.java.lang.String
getMimeType()
Content type (MIME type) of the source.int
hashCode()
void
setContent(java.lang.String content)
Content of the source reference.void
setMimeType(java.lang.String mimeType)
Content type (MIME type) of the source.java.lang.String
toString()
-
-
-
Method Detail
-
getContent
public java.lang.String getContent()
Content of the source reference.
-
setContent
public void setContent(java.lang.String content)
Content of the source reference.
-
getMimeType
public java.lang.String getMimeType()
Content type (MIME type) of the source.This is an optional property.
-
setMimeType
public void setMimeType(java.lang.String mimeType)
Content type (MIME type) of the source.This is an optional property.
-
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
-
-