Package org.eclipse.lsp4j.debug
Class ModulesResponse
- java.lang.Object
-
- org.eclipse.lsp4j.debug.ModulesResponse
-
public class ModulesResponse extends java.lang.Object
Response to 'modules' request.
-
-
Constructor Summary
Constructors Constructor Description ModulesResponse()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object obj)
Module[]
getModules()
All modules or range of modules.java.lang.Integer
getTotalModules()
The total number of modules available.int
hashCode()
void
setModules(Module[] modules)
All modules or range of modules.void
setTotalModules(java.lang.Integer totalModules)
The total number of modules available.java.lang.String
toString()
-
-
-
Method Detail
-
getModules
public Module[] getModules()
All modules or range of modules.
-
setModules
public void setModules(Module[] modules)
All modules or range of modules.
-
getTotalModules
public java.lang.Integer getTotalModules()
The total number of modules available.This is an optional property.
-
setTotalModules
public void setTotalModules(java.lang.Integer totalModules)
The total number of modules available.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
-
-