home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2001 December / dppcpro1201.iso / Extras / maple / Viewer / WebEQ / MMLViewerInstall.cab / MMLViewerApplet.cab / webeq3 / app / Version.class (.txt) < prev   
Encoding:
Java Class File  |  2001-05-24  |  1.4 KB  |  33 lines

  1. package webeq3.app;
  2.  
  3. public class Version {
  4.    public static final String version = "3.0b1";
  5.    public static final String[] authors = new String[7];
  6.    public static final String[] products = new String[7];
  7.    public static final String[] email = new String[7];
  8.  
  9.    static {
  10.       authors[0] = new String("Robert Miner");
  11.       authors[1] = new String("Mark Phillips");
  12.       authors[2] = new String("Adam S. Rosien");
  13.       authors[3] = new String("Jeff Schaefer");
  14.       authors[4] = new String("Eduardo Tabacman");
  15.       authors[5] = new String("Chia-Hsing (Josh) Nien");
  16.       authors[6] = new String("Aleksey Gorochkin");
  17.       products[0] = new String("Overall design and direction");
  18.       products[1] = new String("Packaging, installation, setup");
  19.       products[2] = new String("Design; original LaTeX parser, action handling, equation editor");
  20.       products[3] = new String("Documentation, WebTeX parser");
  21.       products[4] = new String("Sizer, graphical sizer");
  22.       products[5] = new String("Arrays");
  23.       products[6] = new String("JAR, CAB, certificate support");
  24.       email[0] = new String("rminer@geomtech.com");
  25.       email[1] = new String("mbp@geomtech.com");
  26.       email[2] = new String("asr@geom.umn.edu");
  27.       email[3] = new String("schaefer@geom.umn.edu");
  28.       email[4] = new String("tabacman@geom.umn.edu");
  29.       email[5] = new String("nien@geom.umn.edu");
  30.       email[6] = new String("aleksey@geom.umn.edu");
  31.    }
  32. }
  33.