Package org.eclipse.lsp4j
Class ExecutionSummary
- java.lang.Object
-
- org.eclipse.lsp4j.ExecutionSummary
-
public class ExecutionSummary extends java.lang.ObjectSince 3.17.0
-
-
Constructor Summary
Constructors Constructor Description ExecutionSummary()ExecutionSummary(int executionOrder)ExecutionSummary(int executionOrder, java.lang.Boolean success)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)intgetExecutionOrder()A strict monotonically increasing value indicating the execution order of a cell inside a notebook.java.lang.BooleangetSuccess()Whether the execution was successful or not if known by the client.inthashCode()voidsetExecutionOrder(int executionOrder)A strict monotonically increasing value indicating the execution order of a cell inside a notebook.voidsetSuccess(java.lang.Boolean success)Whether the execution was successful or not if known by the client.java.lang.StringtoString()
-
-
-
Method Detail
-
getExecutionOrder
public int getExecutionOrder()
A strict monotonically increasing value indicating the execution order of a cell inside a notebook.
-
setExecutionOrder
public void setExecutionOrder(int executionOrder)
A strict monotonically increasing value indicating the execution order of a cell inside a notebook.
-
getSuccess
public java.lang.Boolean getSuccess()
Whether the execution was successful or not if known by the client.
-
setSuccess
public void setSuccess(java.lang.Boolean success)
Whether the execution was successful or not if known by the client.
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
-