How to read this tutorial
This document describes in detail how to extend the KNIME
framework with your own node. Although this manual decribes the
development of one simple node it is not necessary to read everything in
consecutive order. Use the content index to jump to the section you are
interested in. You would rarely implement all the described
functionality in one single node.
- Section 1: Overview of the Eclipse
plugin concept
- Section 2: The first steps on how to
create your own node with the extension wizard
- Section 3: How to implement your own
algorithm in a NodeModel with a NodeDialog
- Implementing the NodeModel
- The validateSettings method
- The loadValidatedSettings /
saveSettings methods
- The configure method
- The execute method
- Implementing the NodeDialog
- Section 4: How to implement a NodeView
for your node
- Section 5: How to save and load your
internal representation
- Section 6: How to implement HiLiting
- Section 7: How to save and load an
external model
- Section 8: How to adapt your
NodeDescription
- Section 9: How to test and use your
node