Package chemaxon.jep
Interface MolCondition
-
@Deprecated @PublicAPI public interface MolCondition
Deprecated.Will be removed soon.Molecule condition interface for the exhaustive algorithm. The implementation classes are specified inMolCondition
subsections of theMolConditions
section in the XML configuration.- Since:
- JChem 3.0, Marvin 5.1
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description boolean
check(Molecule mol)
Deprecated.Returnstrue
if molecule should be processed,false
otherwise.void
setParameters(String params)
Deprecated.Sets condition parameters.
-
-
-
Method Detail
-
setParameters
void setParameters(String params) throws chemaxon.jep.ConditionException
Deprecated.Sets condition parameters. The parameter string is specified in theParams
attribute of theMolCondition
XML configuration section.- Parameters:
params
- is the parameter string- Throws:
chemaxon.jep.ConditionException
-
check
boolean check(Molecule mol) throws chemaxon.jep.ConditionException
Deprecated.Returnstrue
if molecule should be processed,false
otherwise.- Parameters:
mol
- is the molecule- Throws:
chemaxon.jep.ConditionException
-
-