Package chemaxon.checkers
Class OverlappingBondsChecker
java.lang.Object
chemaxon.checkers.AbstractStructureChecker
chemaxon.checkers.ComponentChecker<MolBond>
chemaxon.checkers.BondChecker
chemaxon.checkers.OverlappingBondsChecker
- All Implemented Interfaces:
StructureChecker,chemaxon.license.Licensable,PropertyChangeListener,Cloneable,EventListener
OverlappingBondsChecker detects bonds that are too close to each other.
This checker checks two dimensional structures only.
Two bonds considered as overlapping when they crossing each other, or their distance is smaller then the 80% of the standard Chemaxon bond length (
This checker checks two dimensional structures only.
Two bonds considered as overlapping when they crossing each other, or their distance is smaller then the 80% of the standard Chemaxon bond length (
MolBond.CCLENGTH ).
Here distance means the distance of two line segments in euclidean space.- Since:
- Marvin 5.3
- See Also:
-
Field Summary
Fields inherited from class chemaxon.checkers.AbstractStructureChecker
errorType, propertyChangeSupportFields inherited from interface chemaxon.checkers.StructureChecker
PROPERTY_KEY_VALID -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected booleanDetects bond of the molecule is crossing another bond or closer than the limit distance.protected StructureCheckerResultIterates through the components and checks every component.protected MoleculeReturns the original molecule if no groups to expand, or the clone of the original molecule with expanded groups.Methods inherited from class chemaxon.checkers.BondChecker
createResult, getComponent, getComponentCountMethods inherited from class chemaxon.checkers.ComponentChecker
initializeMethods inherited from class chemaxon.checkers.AbstractStructureChecker
addPropertyChangeListener, addPropertyChangeListener, check, clone, cloneItem, convertResult, equals, getDescription, getDescriptor, getEditorClassName, getErrorCode, getErrorDescription, getErrorType, getHelpText, getIcon, getLocalMenuName, getName, hashCode, isAvailable, isLicensed, isValid, propertyChange, removePropertyChangeListener, removePropertyChangeListener, setDescription, setHelpText, setIcon, setLicenseEnvironment, setLocalMenuName, setMoreErrorMessage, setName, setNoErrorMessage, setOneErrorMessage, toString
-
Constructor Details
-
OverlappingBondsChecker
public OverlappingBondsChecker()Default constructor
-
-
Method Details
-
check1
Description copied from class:ComponentCheckerIterates through the components and checks every component. If a component has error it is added to aList. After the iteration if no problem occurred the result is null otherwise the method creates aStructureCheckerResultcontaining the atoms and bonds of the problematic components.- Overrides:
check1in classComponentChecker<MolBond>- Parameters:
molecule- theMoleculeinstance to be checked for problems- Returns:
- a
StructureCheckerResultwhich contains all the indices of the problematic components
-
check
Detects bond of the molecule is crossing another bond or closer than the limit distance.- Specified by:
checkin classComponentChecker<MolBond>- Parameters:
molecule- is aMoleculeinstancebond- the index of the bond (MolBondinstance) in the molecule to check- Returns:
- true if the molecule contains crossing bonds, false otherwise
-
expandMolecule
protected Molecule expandMolecule(Molecule molecule, Map<MolAtom, MolAtom> atomMap, Map<MolBond, MolBond> bondMap) Description copied from class:AbstractStructureCheckerReturns the original molecule if no groups to expand, or the clone of the original molecule with expanded groups.- Overrides:
expandMoleculein classAbstractStructureChecker- Parameters:
molecule- the molecule to check- Returns:
- the original molecule, or a clone with expanded sgroups
-