src/core/net/sf/basedb/util/overview/extensions/NodeValidatorAction.java

Code
Comments
Other
Rev Date Author Line
6047 18 Apr 12 nicklas 1 /**
6047 18 Apr 12 nicklas 2   $Id$
6047 18 Apr 12 nicklas 3
6047 18 Apr 12 nicklas 4   Copyright (C) 2012 Nicklas Nordborg
6047 18 Apr 12 nicklas 5
6047 18 Apr 12 nicklas 6   This file is part of BASE - BioArray Software Environment.
6047 18 Apr 12 nicklas 7   Available at http://base.thep.lu.se/
6047 18 Apr 12 nicklas 8
6047 18 Apr 12 nicklas 9   BASE is free software; you can redistribute it and/or
6047 18 Apr 12 nicklas 10   modify it under the terms of the GNU General Public License
6047 18 Apr 12 nicklas 11   as published by the Free Software Foundation; either version 3
6047 18 Apr 12 nicklas 12   of the License, or (at your option) any later version.
6047 18 Apr 12 nicklas 13
6047 18 Apr 12 nicklas 14   BASE is distributed in the hope that it will be useful,
6047 18 Apr 12 nicklas 15   but WITHOUT ANY WARRANTY; without even the implied warranty of
6047 18 Apr 12 nicklas 16   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
6047 18 Apr 12 nicklas 17   GNU General Public License for more details.
6047 18 Apr 12 nicklas 18
6047 18 Apr 12 nicklas 19   You should have received a copy of the GNU General Public License
6047 18 Apr 12 nicklas 20   along with BASE. If not, see <http://www.gnu.org/licenses/>.
6047 18 Apr 12 nicklas 21 */
6047 18 Apr 12 nicklas 22 package net.sf.basedb.util.overview.extensions;
6047 18 Apr 12 nicklas 23
6047 18 Apr 12 nicklas 24 import net.sf.basedb.util.extensions.Action;
6047 18 Apr 12 nicklas 25 import net.sf.basedb.util.overview.validator.NodeValidator;
6047 18 Apr 12 nicklas 26
6047 18 Apr 12 nicklas 27 /**
6047 18 Apr 12 nicklas 28   The same as a NodeValidator. The Action interface provides the 
6047 18 Apr 12 nicklas 29   possibility to link with the extension system.
6047 18 Apr 12 nicklas 30   
6047 18 Apr 12 nicklas 31   @author nicklas
6047 18 Apr 12 nicklas 32   @since 3.2
6047 18 Apr 12 nicklas 33 */
6047 18 Apr 12 nicklas 34 public interface NodeValidatorAction<I>
6047 18 Apr 12 nicklas 35   extends Action, NodeValidator<I>
6047 18 Apr 12 nicklas 36 {}