Skip to content
Snippets Groups Projects
Commit 7e49f20a authored by Krzysztof Gonciarz's avatar Krzysztof Gonciarz
Browse files

Added online documentation entry in menu

parent 18ed80bc
No related branches found
No related tags found
No related merge requests found
package mosaic.plugins;
import ij.plugin.PlugIn;
import java.awt.*;
import java.io.IOException;
import java.net.URI;
import java.net.URISyntaxException;
public class OnlineOpener implements PlugIn {
@Override
public void run(String s) {
try {
Desktop.getDesktop().browse(new URI(s));
} catch (IOException e) {
e.printStackTrace();
} catch (URISyntaxException e) {
e.printStackTrace();
}
}
}
......@@ -28,3 +28,6 @@ Plugins>Mosaic>Utility>Cluster, "New cluster profile", mosaic.plugins.NewCluster
Plugins>Mosaic, "Particle Tracker 2D/3D", mosaic.plugins.ParticleTracker3DModular_("run")
Plugins>Mosaic, "Interaction Analysis", mosaic.plugins.IAPMosaic_("run")
Plugins>Mosaic, "-", null
Plugins>Mosaic, "Online Documentation", mosaic.plugins.OnlineOpener("https://mosaic.mpi-cbg.de/docs/MosaicSuiteDoc/index.html")
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment