|
24 | 24 | * */ |
25 | 25 | package org.openscience.cdk.tools.manipulator; |
26 | 26 |
|
27 | | -import static org.openscience.cdk.CDKConstants.SINGLE_OR_DOUBLE; |
28 | | -import static org.openscience.cdk.interfaces.IDoubleBondStereochemistry.Conformation; |
29 | | - |
30 | | -import java.io.IOException; |
31 | | -import java.util.ArrayList; |
32 | | -import java.util.Arrays; |
33 | | -import java.util.Collection; |
34 | | -import java.util.Collections; |
35 | | -import java.util.HashMap; |
36 | | -import java.util.HashSet; |
37 | | -import java.util.List; |
38 | | -import java.util.Map; |
39 | | -import java.util.Objects; |
40 | | -import java.util.Set; |
41 | | - |
42 | 27 | import com.google.common.collect.Maps; |
43 | 28 | import org.openscience.cdk.CDKConstants; |
44 | 29 | import org.openscience.cdk.atomtype.CDKAtomTypeMatcher; |
45 | | -import org.openscience.cdk.config.Isotopes; |
46 | 30 | import org.openscience.cdk.config.Elements; |
47 | 31 | import org.openscience.cdk.config.IsotopeFactory; |
| 32 | +import org.openscience.cdk.config.Isotopes; |
48 | 33 | import org.openscience.cdk.exception.CDKException; |
49 | 34 | import org.openscience.cdk.graph.GraphUtil; |
50 | 35 | import org.openscience.cdk.interfaces.IAtom; |
|
55 | 40 | import org.openscience.cdk.interfaces.IChemObjectBuilder; |
56 | 41 | import org.openscience.cdk.interfaces.IDoubleBondStereochemistry; |
57 | 42 | import org.openscience.cdk.interfaces.IElectronContainer; |
| 43 | +import org.openscience.cdk.interfaces.IElement; |
58 | 44 | import org.openscience.cdk.interfaces.IIsotope; |
59 | 45 | import org.openscience.cdk.interfaces.ILonePair; |
60 | | -import org.openscience.cdk.interfaces.IMolecularFormula; |
61 | 46 | import org.openscience.cdk.interfaces.IPseudoAtom; |
62 | 47 | import org.openscience.cdk.interfaces.ISingleElectron; |
63 | 48 | import org.openscience.cdk.interfaces.IStereoElement; |
|
73 | 58 |
|
74 | 59 | import javax.vecmath.Point2d; |
75 | 60 | import javax.vecmath.Point3d; |
| 61 | +import java.io.IOException; |
| 62 | +import java.util.ArrayList; |
| 63 | +import java.util.Arrays; |
| 64 | +import java.util.Collection; |
| 65 | +import java.util.Collections; |
| 66 | +import java.util.Comparator; |
| 67 | +import java.util.HashMap; |
| 68 | +import java.util.HashSet; |
| 69 | +import java.util.List; |
| 70 | +import java.util.Map; |
| 71 | +import java.util.Objects; |
| 72 | +import java.util.Set; |
| 73 | + |
| 74 | +import static org.openscience.cdk.CDKConstants.SINGLE_OR_DOUBLE; |
| 75 | +import static org.openscience.cdk.interfaces.IDoubleBondStereochemistry.Conformation; |
76 | 76 |
|
77 | 77 | /** |
78 | 78 | * Class with convenience methods that provide methods to manipulate |
|
0 commit comments