From a89d9ac2d00af9c696f7c0639f49da83eb3033e8 Mon Sep 17 00:00:00 2001 From: David Kolb Date: Mon, 8 Jul 2019 15:30:23 +0200 Subject: [PATCH] Implement init method. The KNIME converter framework calls this method to init the dependencies of the factory. --- .../src/org/knime/knip/base/data/KNIPCellFactory.java | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/org.knime.knip.base/src/org/knime/knip/base/data/KNIPCellFactory.java b/org.knime.knip.base/src/org/knime/knip/base/data/KNIPCellFactory.java index 41f26a7d..86c38a6b 100644 --- a/org.knime.knip.base/src/org/knime/knip/base/data/KNIPCellFactory.java +++ b/org.knime.knip.base/src/org/knime/knip/base/data/KNIPCellFactory.java @@ -136,4 +136,11 @@ protected FileStore getFileStore(final double objSize) throws IOException { } + /** + * {@inheritDoc} + */ + @Override + public void initFactory(final FileStoreFactory fileStore) { + m_fsFactory = fileStore; + } }