Class NotebookTemplate
- java.lang.Object
-
- org.processmining.filterbook.notebook.NotebookTemplate
-
- All Implemented Interfaces:
org.processmining.framework.util.HTMLToString
public class NotebookTemplate extends java.lang.Object implements org.processmining.framework.util.HTMLToString
-
-
Constructor Summary
Constructors Constructor Description NotebookTemplate()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidexportToDocument(org.w3c.dom.Document document)Exports the notebook template to the given XML document.java.util.List<CellTemplate>getCellTemplates()voidimportFromDocument(org.w3c.dom.Document document)Imports the notebook template from the given XML document.voidsetCellTemplates(java.util.List<CellTemplate> cellTemplates)java.lang.StringtoHTMLString(boolean includeHTMLTags)Visualizes the notebook template as HTML.
-
-
-
Method Detail
-
getCellTemplates
public java.util.List<CellTemplate> getCellTemplates()
-
setCellTemplates
public void setCellTemplates(java.util.List<CellTemplate> cellTemplates)
-
toHTMLString
public java.lang.String toHTMLString(boolean includeHTMLTags)
Visualizes the notebook template as HTML.- Specified by:
toHTMLStringin interfaceorg.processmining.framework.util.HTMLToString
-
exportToDocument
public void exportToDocument(org.w3c.dom.Document document)
Exports the notebook template to the given XML document.- Parameters:
document- The given XML document.
-
importFromDocument
public void importFromDocument(org.w3c.dom.Document document)
Imports the notebook template from the given XML document.- Parameters:
document- The given XML document.
-
-