-
-
Method Summary
Modifier and Type Method Description abstract CodeCell
getCell(Integer id)
Mapping allowing to get cell by execution number abstract Object
getResult(Integer id)
Mapping allowing to get result by execution number abstract List<DisplayResultWithCell>
getAllDisplays()
Information about all display data objects abstract List<DisplayResultWithCell>
getDisplaysById(String id)
Information about displays with the given id abstract CodeCell
history(Integer before)
Get cell by relative offset: 0 for current cell, 1 for previous cell, and so on abstract Collection<CodeCell>
getCellsList()
All executed cells of this notebook CodeCell
getCurrentCell()
CodeCell
getLastCell()
abstract KotlinKernelVersion
getKernelVersion()
Current kernel version abstract JREInfoProvider
getJreInfo()
Current JRE info -
-
Method Detail
-
getAllDisplays
abstract List<DisplayResultWithCell> getAllDisplays()
Information about all display data objects
-
getDisplaysById
abstract List<DisplayResultWithCell> getDisplaysById(String id)
Information about displays with the given id
-
history
abstract CodeCell history(Integer before)
Get cell by relative offset: 0 for current cell, 1 for previous cell, and so on
- Parameters:
before
- Relative offset
-
getCellsList
abstract Collection<CodeCell> getCellsList()
All executed cells of this notebook
-
getCurrentCell
CodeCell getCurrentCell()
-
getLastCell
CodeCell getLastCell()
-
getKernelVersion
abstract KotlinKernelVersion getKernelVersion()
Current kernel version
-
getJreInfo
abstract JREInfoProvider getJreInfo()
Current JRE info
-
-
-
-