We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba402e8 commit 99c88a1Copy full SHA for 99c88a1
base/core/src/main/java/org/openscience/cdk/stereo/AbstractStereo.java
@@ -112,10 +112,18 @@ public void setConfigOrder(int cfg) {
112
value = getConfigClass() | cfg;
113
}
114
115
+ /**
116
+ * Access the stereo group in, this is present when this stereo element is racemic (AND) or relative (OR).
117
+ * @return the group info
118
+ */
119
public int getGroupInfo() {
120
return value & IStereoElement.GRP_MASK;
121
122
123
124
+ * Set the group info for this stereo center.
125
+ * @param grp the group info
126
127
public void setGrpConfig(int grp) {
128
value &= ~IStereoElement.GRP_MASK;
129
value |= (grp & IStereoElement.GRP_MASK);
0 commit comments