Package org.eclipse.lsp4j.debug
Class ModuleEventArguments
- java.lang.Object
-
- org.eclipse.lsp4j.debug.ModuleEventArguments
-
public class ModuleEventArguments extends java.lang.Object
The event indicates that some information about a module has changed.Represents the
body
ofModuleEvent
defined in spec.
-
-
Constructor Summary
Constructors Constructor Description ModuleEventArguments()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object obj)
Module
getModule()
The new, changed, or removed module.ModuleEventArgumentsReason
getReason()
The reason for the event.int
hashCode()
void
setModule(Module module)
The new, changed, or removed module.void
setReason(ModuleEventArgumentsReason reason)
The reason for the event.java.lang.String
toString()
-
-
-
Method Detail
-
getReason
public ModuleEventArgumentsReason getReason()
The reason for the event.
-
setReason
public void setReason(ModuleEventArgumentsReason reason)
The reason for the event.
-
getModule
public Module getModule()
The new, changed, or removed module. In case of 'removed' only the module id is used.
-
setModule
public void setModule(Module module)
The new, changed, or removed module. In case of 'removed' only the module id is used.
-
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
-
-