plugins/base1/se.lu.onk.MergeBioAssay/trunk/src/mergebioassay/BioAssay.java

Code
Comments
Other
Rev Date Author Line
783 18 Sep 08 jari 1 /*
783 18 Sep 08 jari 2   $Id$
783 18 Sep 08 jari 3
783 18 Sep 08 jari 4   Copyright (C) 2006 Johan Enell
783 18 Sep 08 jari 5
783 18 Sep 08 jari 6   This file is part of the se.lu.onk.MergeBioAssay plug-in for
783 18 Sep 08 jari 7   BASE. Available at http://baseplugins.thep.lu.se/ and BASE web
783 18 Sep 08 jari 8   site is http://base.thep.lu.se
783 18 Sep 08 jari 9
783 18 Sep 08 jari 10   This is free software; you can redistribute it and/or modify it
783 18 Sep 08 jari 11   under the terms of the GNU General Public License as published by
783 18 Sep 08 jari 12   the Free Software Foundation; either version 3 of the License, or
783 18 Sep 08 jari 13   (at your option) any later version.
783 18 Sep 08 jari 14
783 18 Sep 08 jari 15   The software is distributed in the hope that it will be useful, but
783 18 Sep 08 jari 16   WITHOUT ANY WARRANTY; without even the implied warranty of
783 18 Sep 08 jari 17   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
783 18 Sep 08 jari 18   General Public License for more details.
783 18 Sep 08 jari 19
783 18 Sep 08 jari 20   You should have received a copy of the GNU General Public License
783 18 Sep 08 jari 21   along with BASE. If not, see <http://www.gnu.org/licenses/>.
783 18 Sep 08 jari 22 */
149 10 Aug 06 enell 23 package mergebioassay;
149 10 Aug 06 enell 24
149 10 Aug 06 enell 25 /**
149 10 Aug 06 enell 26  * A basic class that wraps a BioAssays. This is a very basic class that 
149 10 Aug 06 enell 27  * can be used as an super-class. It will be updated in later versions 
149 10 Aug 06 enell 28  * of thid package. 
149 10 Aug 06 enell 29  * 
149 10 Aug 06 enell 30  * @author Johan Enell
149 10 Aug 06 enell 31  */
149 10 Aug 06 enell 32 public class BioAssay {
149 10 Aug 06 enell 33   public String name, id;
149 10 Aug 06 enell 34
149 10 Aug 06 enell 35   
149 10 Aug 06 enell 36   /**
149 10 Aug 06 enell 37    * Constructs a new BioAssay with an is and a name. 
149 10 Aug 06 enell 38    * 
149 10 Aug 06 enell 39    * @param id the id of the BioAssay
149 10 Aug 06 enell 40    * @param name the name of the BioAssay
149 10 Aug 06 enell 41    */
149 10 Aug 06 enell 42   public BioAssay(String id, String name) {
149 10 Aug 06 enell 43     this.id = id;
149 10 Aug 06 enell 44     this.name = name;
149 10 Aug 06 enell 45   }
149 10 Aug 06 enell 46
149 10 Aug 06 enell 47 }