Skip to content

Commit

Permalink
refactored to new cellviewer
Browse files Browse the repository at this point in the history
  • Loading branch information
dietzc committed Jul 4, 2016
1 parent 9ccbfb7 commit 0b8219b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions de.mpicbg.knime.ip.clearvolume.base/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
<?eclipse version="3.0"?>
<plugin>
<extension
point="org.knime.knip.base.TableCellView">
<TableCellView
TableCellViewFactory="de.mpicbg.knime.ip.clearvolume.base.ClearVolumeViewer">
</TableCellView>
point="org.knime.knip.cellviewer.cellviews">
<CellView
CellViewProviderFactory="de.mpicbg.knime.ip.clearvolume.base.ClearVolumeViewer">
</CellView>
</extension>
</plugin>
Original file line number Diff line number Diff line change
Expand Up @@ -20,18 +20,18 @@ public ClearVolumeTableCellView<T> createCellView() {
* {@inheritDoc}
*/
@Override
public String getCellViewName() {
public String getCellViewDescription() {
return "ClearVolume-KNIME integration.\n" + "The viewer is capable of CUDA rendering of ImgPlus images. "
+ "If CUDA is not available a OpenCL render will be used.\n"
+ "For more information see 'https://bitbucket.org/clearvolume/clearvolume/wiki/Home'.\n"
+ "For more information see 'https://tech.knime.org/book/clearvolume'.\n"
+ "Credits to: Loic Royer, Martin Weigert, Ulrik Guenther, and Florian Jug.";
}

/**
* {@inheritDoc}
*/
@Override
public String getCellViewDescription() {
public String getCellViewName() {
return "ClearVolume";
}

Expand Down

0 comments on commit 0b8219b

Please sign in to comment.