Sha256: 020e90aadff868ca1e0609bbb430c1d3956788ea8acee5b43fbf8b24015b4d2c

Contents?: true

Size: 1.69 KB

Versions: 1

Compression:

Stored size: 1.69 KB

Contents

/*
Copyright Ideaconsult Ltd.(C) 2006  
Contact: nina@acad.bg

This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
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 General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.

*/
package eye.rules;


/**
 * Aqueous solubility [g/l] < 2.0E-5 Expects property to be read from IMolecule.getProperty({@link #AqueousSolubility}).
 * @author Nina Jeliazkova
 * @author ania Tsakovska
 */
public class RuleAqueousSolubility extends sicret.rules.RuleAqueousSolubility {
	/**
	 * 
	 */
	private static final long serialVersionUID = 5545033439943037006L;
	public RuleAqueousSolubility()
	{
		this(AqueousSolubility,"g/l",condition_lower,2.0E-5);
		
	}
	public RuleAqueousSolubility(String propertyName, String units, String condition, double value) {
		super(propertyName,units,condition,value);
		setID("6");
		setTitle(getPropertyName() + getCondition() + getProperty());
		examples[0] = "c1([C@@](COC(N)=O)(CC)O)ccccc1";
		examples[1] = "C(c1ccc(Cl)cc1)(c1ccc(Cl)cc1)C(Cl)(Cl)Cl";		
	}
	public javax.swing.JComponent optionsPanel(org.openscience.cdk.interfaces.IAtomContainer atomContainer) {
	    return null;
    };	
}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
toxtree-0.0.1 Toxtree-v2.6.13/src/eye/rules/RuleAqueousSolubility.java