src/test/JarPluginType.java

Code
Comments
Other
Rev Date Author Line
1345 19 Sep 05 nicklas 1 /*
1345 19 Sep 05 nicklas 2   $Id$
1345 19 Sep 05 nicklas 3
3675 16 Aug 07 jari 4   Copyright (C) 2005 Nicklas Nordborg
4889 06 Apr 09 nicklas 5   Copyright (C) 2006 Jari Häkkinen
1345 19 Sep 05 nicklas 6  
2304 22 May 06 jari 7   This file is part of BASE - BioArray Software Environment.
2304 22 May 06 jari 8   Available at http://base.thep.lu.se/
1345 19 Sep 05 nicklas 9
1345 19 Sep 05 nicklas 10   BASE is free software; you can redistribute it and/or
1345 19 Sep 05 nicklas 11   modify it under the terms of the GNU General Public License
4480 05 Sep 08 jari 12   as published by the Free Software Foundation; either version 3
1345 19 Sep 05 nicklas 13   of the License, or (at your option) any later version.
1345 19 Sep 05 nicklas 14
1345 19 Sep 05 nicklas 15   BASE is distributed in the hope that it will be useful,
1345 19 Sep 05 nicklas 16   but WITHOUT ANY WARRANTY; without even the implied warranty of
1345 19 Sep 05 nicklas 17   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
1345 19 Sep 05 nicklas 18   GNU General Public License for more details.
1345 19 Sep 05 nicklas 19
1345 19 Sep 05 nicklas 20    You should have received a copy of the GNU General Public License
4514 11 Sep 08 jari 21    along with BASE. If not, see <http://www.gnu.org/licenses/>.
1345 19 Sep 05 nicklas 22 */
1345 19 Sep 05 nicklas 23 import net.sf.basedb.core.plugin.Plugin;
1345 19 Sep 05 nicklas 24
1345 19 Sep 05 nicklas 25 /**
1345 19 Sep 05 nicklas 26   A class used by the JarPlugin to test the JarClassLoader
1345 19 Sep 05 nicklas 27   
1345 19 Sep 05 nicklas 28   @author Nicklas
1345 19 Sep 05 nicklas 29   @version 2.0
1345 19 Sep 05 nicklas 30   @base.modified $Date$
1345 19 Sep 05 nicklas 31 */
1345 19 Sep 05 nicklas 32 public class JarPluginType
1345 19 Sep 05 nicklas 33 {
1345 19 Sep 05 nicklas 34
1372 21 Sep 05 nicklas 35   public static Plugin.MainType getMainType()
1345 19 Sep 05 nicklas 36   {
1372 21 Sep 05 nicklas 37     return Plugin.MainType.OTHER;
1345 19 Sep 05 nicklas 38   }
1345 19 Sep 05 nicklas 39
1345 19 Sep 05 nicklas 40 }