/components/loci-plugins/src/loci/plugins/About.java

http://github.com/openmicroscopy/bioformats · Java · 101 lines · 45 code · 16 blank · 40 comment · 0 complexity · 4aabbbfaf6bc9a423605828cf379edbb MD5 · raw file

  1. /*
  2. * #%L
  3. * LOCI Plugins for ImageJ: a collection of ImageJ plugins including the
  4. * Bio-Formats Importer, Bio-Formats Exporter, Bio-Formats Macro Extensions,
  5. * Data Browser and Stack Slicer.
  6. * %%
  7. * Copyright (C) 2006 - 2013 Open Microscopy Environment:
  8. * - Board of Regents of the University of Wisconsin-Madison
  9. * - Glencoe Software, Inc.
  10. * - University of Dundee
  11. * %%
  12. * This program is free software: you can redistribute it and/or modify
  13. * it under the terms of the GNU General Public License as
  14. * published by the Free Software Foundation, either version 2 of the
  15. * License, or (at your option) any later version.
  16. *
  17. * This program is distributed in the hope that it will be useful,
  18. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  20. * GNU General Public License for more details.
  21. *
  22. * You should have received a copy of the GNU General Public
  23. * License along with this program. If not, see
  24. * <http://www.gnu.org/licenses/gpl-2.0.html>.
  25. * #L%
  26. */
  27. package loci.plugins;
  28. import ij.plugin.PlugIn;
  29. import javax.swing.ImageIcon;
  30. import javax.swing.JOptionPane;
  31. import loci.formats.IFormatHandler;
  32. /**
  33. * Displays a small information dialog about the LOCI Plugins package.
  34. *
  35. * <dl><dt><b>Source code:</b></dt>
  36. * <dd><a href="http://trac.openmicroscopy.org.uk/ome/browser/bioformats.git/components/loci-plugins/src/loci/plugins/About.java">Trac</a>,
  37. * <a href="http://git.openmicroscopy.org/?p=bioformats.git;a=blob;f=components/loci-plugins/src/loci/plugins/About.java;hb=HEAD">Gitweb</a></dd></dl>
  38. */
  39. public final class About implements PlugIn {
  40. // -- Constants --
  41. /** URL of LOCI Software web page. */
  42. public static final String URL_LOCI_SOFTWARE =
  43. "http://loci.wisc.edu/software";
  44. /** URL of Bio-Formats ImageJ web page. */
  45. public static final String URL_BIO_FORMATS_IMAGEJ =
  46. "http://www.openmicroscopy.org/site/support/bio-formats/users/imagej/features.html";
  47. /** URL of Data Browser web page. */
  48. public static final String URL_DATA_BROWSER =
  49. "http://loci.wisc.edu/software/data-browser";
  50. // -- PlugIn API methods --
  51. public void run(String arg) {
  52. about();
  53. }
  54. // -- Static utility methods --
  55. public static void about() {
  56. String msg = "<html>" +
  57. "LOCI Plugins for ImageJ, revision @vcs.revision@, built @date@" +
  58. "<br>Release: @release.version@" +
  59. "<br>Copyright (C) 2005 - @year@ Open Microscopy Environment:" +
  60. "<ul>" +
  61. "<li>Board of Regents of the University of Wisconsin-Madison</li>" +
  62. "<li>Glencoe Software, Inc.</li>" +
  63. "<li>University of Dundee</li>" +
  64. "</ul>" +
  65. "<i>" + URL_LOCI_SOFTWARE + "</i>" +
  66. "<br>" +
  67. "<br><b>Bio-Formats Importer</b>, <b>Bio-Formats Exporter</b> " +
  68. "and <b>Stack Slicer</b>" +
  69. "<br>Authors: Curtis Rueden, Melissa Linkert" +
  70. "<br><i>" + URL_BIO_FORMATS_IMAGEJ + "</i>" +
  71. "<br>" +
  72. "<br><b>Data Browser</b>" +
  73. "<br>Authors: Curtis Rueden, Melissa Linkert, Chris Peterson" +
  74. "<br><i>" + URL_DATA_BROWSER + "</i>";
  75. ImageIcon bioFormatsLogo = new ImageIcon(
  76. IFormatHandler.class.getResource("bio-formats-logo.png"));
  77. JOptionPane.showMessageDialog(null, msg, "LOCI Plugins for ImageJ",
  78. JOptionPane.INFORMATION_MESSAGE, bioFormatsLogo);
  79. }
  80. // -- Main method --
  81. public static void main(String[] args) {
  82. about();
  83. System.exit(0);
  84. }
  85. }