/* $Revision: 10248 $ $Author: egonw $ $Date: 2008-02-26 11:12:38 +0100 (Tue, 26 Feb 2008) $ * * Copyright (C) 2008 Miquel Rojas Cherto <miguelrojasch@users.sf.net> * * Contact: cdk-devel@list.sourceforge.net * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public License * as published by the Free Software Foundation; either version 2.1 * of the License, or (at your option) any later version. * * 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 Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. */ package org.openscience.cdk.reaction.type.parameters; import org.openscience.cdk.annotations.TestClass; import org.openscience.cdk.annotations.TestMethod; /** * Class which defines the allowed parameters of a reaction. * * @author miguelrojasch * @cdk.module reaction */ @TestClass(value="org.openscience.cdk.reaction.type.parameters.ParameterReactTest") public class ParameterReact implements IParameterReact{ /** True, if the parameter is fixed to take account*/ private boolean IS_SET_PARAMETER = false; /** The value of the parameter to set*/ private Object VALUE = null; /** * Set the parameter to take account. * * @param set True, if the parameter needs to take account */ @TestMethod(value="testSetParameter_boolean") public void setParameter(boolean set){ IS_SET_PARAMETER = set; } /** * Get if this parameter needs to take account. * * @return True, if the parameter needs to take account */ @TestMethod(value="testIsSetParameter") public boolean isSetParameter(){ return IS_SET_PARAMETER; } /** * Set the value of the parameter. * * @param value The value of the parameter */ @TestMethod(value="testSetValue_object") public void setValue(Object value){ VALUE = value; } /** * Get the value of the parameter. * * @return The value of the parameter */ @TestMethod(value="testGetValue") public Object getValue(){ return VALUE; } }