//===================================================================== // File: Constants.java // Class: Constants // Package: AFLPcore // // Author: James J. Benham // Date: October 14, 2001 // Contact: james_benham@hmc.edu // // Genographer v1.6 - Computer assisted scoring of gels. // Copyright (C) 1998 Montana State University // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; version 2 // of the License. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program; if not, write to the Free Software // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. // // The GNU General Public License is distributed in the file GPL //===================================================================== package AFLPcore; /** * This class simply contains constants that are used elsewhere in the * program. * * @author James J. Benham * @version 1.6.0 * @date October 14, 2001 */ public class Constants { public final static String ABOUT_STR = "Genographer\n" + "\n"+ " Version: 1.6.0\n"+ " Release date: October 14, 2001\n"+ " Author: James J. Benham\n"+ "\n"+ "Latest version available at:\n"+ "http://hordeum.oscs.montana.edu/genographer\n"+ "\n"+ "Copyright (C) 1999 Montana State University\n"+ "Some Modifications Copyright (C) 2001 James J. Benham\n" + "\n"+ "The CEQ Trace import functionallity was provided by\n" + "Barry S. Master and others at Beckman Coulter.\n" + "There contributions and support are greatly appreciated\n" + "\n" + "Java PNG by VisualTekSolutions Inc.\n"+ "http://www.visualtek.com/PNG/\n"+ "\n"+ "Send questions and comments to:\n"+ " James Benham james_benham@hmc.edu\n"+ " Tom Blake blake@hordeum.oscs.montana.edu\n"+ " Philip DeCamp decamp@portalofevil.com\n" + "\n"+ "This program is free software; you can redistribute it and/or\n"+ "modify it under the terms of the GNU General Public License\n"+ "as published by the Free Software Foundation; version 2\n"+ "of the License.\n"+ "\n"+ "This program is distributed in the hope that it will be useful,\n"+ "but WITHOUT ANY WARRANTY; without even the implied warranty of\n"+ "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"+ "GNU General Public License for more details.\n"+ "\n"+ "You should have received a copy of the GNU General Public License\n"+ "along with this program; if not, write to the Free Software\n"+ "Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"+ "\n"+ "The GNU General Public License is distributed in the file GPL\n"+ "in the program directory and can also be found at:\n"+ "http://www.gnu.org/copyleft/gpl.html\n"; }