
org.openscience.cdk.qsar.IBondDescriptor Maven / Gradle / Ivy
/* Copyright (C) 2006-2007 Egon Willighagen
*
* Contact: [email protected]
*
* 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.qsar;
import org.openscience.cdk.interfaces.IAtomContainer;
import org.openscience.cdk.interfaces.IBond;
/**
* Classes that implement this interface are QSAR descriptor calculators.
*
* @cdk.module qsar
* @cdk.githash
*/
public interface IBondDescriptor extends IDescriptor {
/**
* Calculates the descriptor value for the given IBond.
*
* @param bond A {@link IBond} for which this descriptor
* should be calculated
* @param atomContainer The molecule containing the bond
* @return An object of {@link DescriptorValue} that contain the
* calculated value as well as specification details
*/
public DescriptorValue calculate(IBond bond, IAtomContainer atomContainer);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy