Package org.eclipse.lsp4j.debug
Class LoadedSourceEventArguments
- java.lang.Object
-
- org.eclipse.lsp4j.debug.LoadedSourceEventArguments
-
public class LoadedSourceEventArguments extends java.lang.Object
The event indicates that some source has been added, changed, or removed from the set of all loaded sources.Represents the
body
ofLoadedSourceEvent
defined in spec.
-
-
Constructor Summary
Constructors Constructor Description LoadedSourceEventArguments()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object obj)
LoadedSourceEventArgumentsReason
getReason()
The reason for the event.Source
getSource()
The new, changed, or removed source.int
hashCode()
void
setReason(LoadedSourceEventArgumentsReason reason)
The reason for the event.void
setSource(Source source)
The new, changed, or removed source.java.lang.String
toString()
-
-
-
Method Detail
-
getReason
public LoadedSourceEventArgumentsReason getReason()
The reason for the event.
-
setReason
public void setReason(LoadedSourceEventArgumentsReason reason)
The reason for the event.
-
getSource
public Source getSource()
The new, changed, or removed source.
-
setSource
public void setSource(Source source)
The new, changed, or removed source.
-
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
-
-