Package org.eclipse.lsp4j.debug
Class ModulesArguments
- java.lang.Object
-
- org.eclipse.lsp4j.debug.ModulesArguments
-
public class ModulesArguments extends java.lang.Object
Arguments for 'modules' request.
-
-
Constructor Summary
Constructors Constructor Description ModulesArguments()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object obj)
java.lang.Integer
getModuleCount()
The number of modules to return.java.lang.Integer
getStartModule()
The index of the first module to return; if omitted modules start at 0.int
hashCode()
void
setModuleCount(java.lang.Integer moduleCount)
The number of modules to return.void
setStartModule(java.lang.Integer startModule)
The index of the first module to return; if omitted modules start at 0.java.lang.String
toString()
-
-
-
Method Detail
-
getStartModule
public java.lang.Integer getStartModule()
The index of the first module to return; if omitted modules start at 0.This is an optional property.
-
setStartModule
public void setStartModule(java.lang.Integer startModule)
The index of the first module to return; if omitted modules start at 0.This is an optional property.
-
getModuleCount
public java.lang.Integer getModuleCount()
The number of modules to return. If moduleCount is not specified or 0, all modules are returned.This is an optional property.
-
setModuleCount
public void setModuleCount(java.lang.Integer moduleCount)
The number of modules to return. If moduleCount is not specified or 0, all modules are returned.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
-
-