use of org.knime.core.util.tokenizer.SettingsStatus in project knime-core by knime.
the class FileReaderNodeSettings method getStatusOfSettings.
/**
* Method to check consistency and completeness of the current settings. It
* will return a {@link SettingsStatus} object which contains info, warning
* and error messages, if something is fishy with the settings.
*
* {@inheritDoc}
*/
@Override
public SettingsStatus getStatusOfSettings(final boolean openDataFile, final DataTableSpec tableSpec) {
SettingsStatus status = new SettingsStatus();
addStatusOfSettings(status, openDataFile, tableSpec);
return status;
}
Aggregations