-
public interface CodeCell
Single evaluated notebook cell representation
-
-
Method Summary
Modifier and Type Method Description abstract Notebook
getNotebook()
Reference to the notebook instance abstract Integer
getId()
Displayed cell ID abstract Integer
getInternalId()
Internal cell ID which is used to generate internal class names and result fields abstract String
getCode()
Cell code abstract String
getPreprocessedCode()
Cell code after magic preprocessing abstract Object
getResult()
Cell result value abstract String
getStreamOutput()
Cell standard output abstract DisplayContainer
getDisplays()
Cell displays abstract CodeCell
getPrevCell()
Previously evaluated cell -
-
Method Detail
-
getNotebook
abstract Notebook getNotebook()
Reference to the notebook instance
-
getInternalId
abstract Integer getInternalId()
Internal cell ID which is used to generate internal class names and result fields
-
getPreprocessedCode
abstract String getPreprocessedCode()
Cell code after magic preprocessing
-
getStreamOutput
abstract String getStreamOutput()
Cell standard output
-
getDisplays
abstract DisplayContainer getDisplays()
Cell displays
-
getPrevCell
abstract CodeCell getPrevCell()
Previously evaluated cell
-
-
-
-