Updating custom nodes - deprecated

I need to update my custom nodes and while doing so I want to really get rid of any deprecated classes/methods. First list on the item is

org.knime.core.node.util.ColumnFilterPanel;

used as below:

addDialogComponent(new DialogComponentColumnNameSelection (
        		new SettingsModelString(
        			CustomNodeModel.CFGKEY_BASE64,
        			CustomNodeModel.DEFAULT_BASE64),
	            	"Structure Column:", CustomNodeModel.IN_PORT,
	            	new ColumnFilterPanel.ValueClassFilter(StringValue.class)));

I was wondering what the upgrade Path is from ColumnFilterPanel?
And also were to find information with what to replace deprecated classes (it’s not in the source code).

Hi @kienerj,

The ColumnFilterPanel tells you which class you should use instead:

It mentions this one:

best,
Gabriel

1 Like

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.