Skip to content
Snippets Groups Projects

Feature serialization

Merged Céline TREBEAU requested to merge 8-json-serialization into dev
16 files
+ 419
62
Compare changes
  • Side-by-side
  • Inline
Files
16
@@ -33,8 +33,6 @@ import fr.pasteur.ida.zellige.gui.MainAppFrame;
import net.imagej.DatasetService;
import net.imagej.ImageJ;
import net.imagej.display.ImageDisplayService;
import net.imglib2.type.NativeType;
import net.imglib2.type.numeric.RealType;
import org.scijava.command.Command;
import org.scijava.log.LogService;
import org.scijava.plugin.Parameter;
@@ -45,7 +43,7 @@ import java.io.IOException;
import java.nio.file.FileSystems;
@Plugin( type = Command.class, menuPath = "Plugins>Zellige>" )
public class Zellige< T extends RealType< T > & NativeType< T > > implements Command
public class Zellige implements Command
{
@Parameter
@@ -90,13 +88,14 @@ public class Zellige< T extends RealType< T > & NativeType< T > > implements Com
ij.command().run( Zellige.class, true );
}
@Override
public void run()
{
// Launch JavaFX interface
MainAppFrame app = new MainAppFrame( ij, image, logService );
app.setTitle( "Zellige" );
app.setTitle( "Zellige V1.0.1" );
app.init();
}
Loading