-
- All Implemented Interfaces:
-
org.jetbrains.kotlinx.jupyter.api.libraries.VariablesSubstitutionAware
public interface RendererHandler implements VariablesSubstitutionAware<RendererHandler>
RendererHandler renders results for which accepts returns
true
-
-
Method Summary
Modifier and Type Method Description abstract Boolean
accepts(Object value)
Returns true if this renderer accepts value, false otherwise abstract ResultHandlerExecution
getExecution()
Execution to handle result. -
-
Method Detail
-
accepts
abstract Boolean accepts(Object value)
Returns true if this renderer accepts value, false otherwise
-
getExecution
abstract ResultHandlerExecution getExecution()
Execution to handle result. Should not throw if accepts returns true
-
-
-
-