Package org.eclipse.lsp4j.debug
Class WriteMemoryResponse
- java.lang.Object
-
- org.eclipse.lsp4j.debug.WriteMemoryResponse
-
public class WriteMemoryResponse extends java.lang.Object
Response to 'writeMemory' request.Since 1.48
-
-
Constructor Summary
Constructors Constructor Description WriteMemoryResponse()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object obj)
java.lang.Integer
getBytesWritten()
Property that should be returned when 'allowPartial' is true to indicate the number of bytes starting from address that were successfully written.java.lang.Integer
getOffset()
Property that should be returned when 'allowPartial' is true to indicate the offset of the first byte of data successfully written.int
hashCode()
void
setBytesWritten(java.lang.Integer bytesWritten)
Property that should be returned when 'allowPartial' is true to indicate the number of bytes starting from address that were successfully written.void
setOffset(java.lang.Integer offset)
Property that should be returned when 'allowPartial' is true to indicate the offset of the first byte of data successfully written.java.lang.String
toString()
-
-
-
Method Detail
-
getOffset
public java.lang.Integer getOffset()
Property that should be returned when 'allowPartial' is true to indicate the offset of the first byte of data successfully written. Can be negative.This is an optional property.
-
setOffset
public void setOffset(java.lang.Integer offset)
Property that should be returned when 'allowPartial' is true to indicate the offset of the first byte of data successfully written. Can be negative.This is an optional property.
-
getBytesWritten
public java.lang.Integer getBytesWritten()
Property that should be returned when 'allowPartial' is true to indicate the number of bytes starting from address that were successfully written.This is an optional property.
-
setBytesWritten
public void setBytesWritten(java.lang.Integer bytesWritten)
Property that should be returned when 'allowPartial' is true to indicate the number of bytes starting from address that were successfully written.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
-
-