Skip to content

Commit 99c88a1

Browse files
committed
Missed some doc.
1 parent ba402e8 commit 99c88a1

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

base/core/src/main/java/org/openscience/cdk/stereo/AbstractStereo.java

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,10 +112,18 @@ public void setConfigOrder(int cfg) {
112112
value = getConfigClass() | cfg;
113113
}
114114

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+
*/
115119
public int getGroupInfo() {
116120
return value & IStereoElement.GRP_MASK;
117121
}
118122

123+
/**
124+
* Set the group info for this stereo center.
125+
* @param grp the group info
126+
*/
119127
public void setGrpConfig(int grp) {
120128
value &= ~IStereoElement.GRP_MASK;
121129
value |= (grp & IStereoElement.GRP_MASK);

0 commit comments

Comments
 (0)