Skip to content

Instantly share code, notes, and snippets.

@johnmay
Created August 15, 2012 13:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save johnmay/3360086 to your computer and use it in GitHub Desktop.
Save johnmay/3360086 to your computer and use it in GitHub Desktop.
CDK Bond Stereo reading from CML
} else if ("bondStereo".equals(name)) {
for (int i = 0; i < atts.getLength(); i++) {
if (atts.getQName(i).equals("dictRef")) {
if (atts.getValue(i).startsWith("cml:"))
bondStereo.add(atts.getValue(i).substring(4));
stereoGiven=true;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment