public abstract class NotebookSaveOptions extends Object
An abstract base class which represents notebook saving options for a particular format.
Modifier and Type | Method and Description |
---|---|
boolean |
getDeferredSaving()
Gets or sets a value indicating whether children documents
should be saved explicitly.
|
abstract SaveOptions |
getDocumentSaveOptionsInternal()
Gets the save options for all notebook's child documents.
|
boolean |
getFlatten()
Gets or sets a value indicating whether the notebook children hierarchy is saved flattened.
|
abstract int |
getSaveFormat()
Gets the format in which the notebook is saved.
|
void |
setDeferredSaving(boolean value)
Gets or sets a value indicating whether children documents
should be saved explicitly.
|
void |
setFlatten(boolean value)
Gets or sets a value indicating whether the notebook children hierarchy is saved flattened.
|
public abstract int getSaveFormat()
Gets the format in which the notebook is saved.
public boolean getFlatten()
Gets or sets a value indicating whether the notebook children hierarchy is saved flattened.
public void setFlatten(boolean value)
Gets or sets a value indicating whether the notebook children hierarchy is saved flattened.
public boolean getDeferredSaving()
Gets or sets a value indicating whether children documents should be saved explicitly.
false
, so child documents will be saved implicitly.
Value true
is indicating that user should save each notebook's child node explicitly.
If notebook is saving to stream, the value is always true
despite was explicitly set by user to false
.
public void setDeferredSaving(boolean value)
Gets or sets a value indicating whether children documents should be saved explicitly.
false
, so child documents will be saved implicitly.
Value true
is indicating that user should save each notebook's child node explicitly.
If notebook is saving to stream, the value is always true
despite was explicitly set by user to false
.
public abstract SaveOptions getDocumentSaveOptionsInternal()
Gets the save options for all notebook's child documents.
SaveOptions
.