Package org.eclipse.lsp4j.debug
Class LoadedSourcesResponse
- java.lang.Object
-
- org.eclipse.lsp4j.debug.LoadedSourcesResponse
-
public class LoadedSourcesResponse extends java.lang.Object
Response to 'loadedSources' request.
-
-
Constructor Summary
Constructors Constructor Description LoadedSourcesResponse()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object obj)
Source[]
getSources()
Set of loaded sources.int
hashCode()
void
setSources(Source[] sources)
Set of loaded sources.java.lang.String
toString()
-
-
-
Method Detail
-
getSources
public Source[] getSources()
Set of loaded sources.
-
setSources
public void setSources(Source[] sources)
Set of loaded sources.
-
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
-
-