Closed dietzc closed 8 years ago
currently, most of the auto-generated nodes implicitly work on tables. However, in the future we also want to support nodes which have an input parameter which is a PortObject.
PortObject
Example include:
// first inport @Parameter private BufferedDataTable table; // optional second inport @Parameter (required=false) private BufferedDataTable table2; @Parameter private WekaClassifier classifier; @Parameter(type = ItemIO.OUTPUT) private BufferedDataTable table;
this would give us tons of flexibility. For scripting in particular we would only support BufferedDataTables of course.
BufferedDataTable
this is currently not possible and will not be possible in the near future.
currently, most of the auto-generated nodes implicitly work on tables. However, in the future we also want to support nodes which have an input parameter which is a
PortObject
.Example include:
this would give us tons of flexibility. For scripting in particular we would only support
BufferedDataTable
s of course.