📄 cmlreactionmodule.java
字号:
/* $Revision: 7981 $ $Author: egonw $ $Date: 2007-02-20 18:05:37 +0100 (Tue, 20 Feb 2007) $ * * Copyright (C) 2003-2007 Egon Willighagen <egonw@users.sf.net> * * Contact: cdk-devel@lists.sourceforge.net * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public License * as published by the Free Software Foundation; either version 2.1 * of the License, or (at your option) any later version. * All we ask is that proper credit is given for our work, which includes * - but is not limited to - adding the above copyright notice to the beginning * of your source code files, and to any copyright notice that you may distribute * with programs based on this work. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * */package org.openscience.cdk.io.cml;import org.openscience.cdk.interfaces.IChemFile;import org.openscience.cdk.interfaces.IMolecule;import org.xml.sax.Attributes;/** * @author Egon Willighagen <elw38@cam.ac.uk> * * @cdk.module io */public class CMLReactionModule extends CMLCoreModule { private String objectType; public CMLReactionModule(IChemFile chemFile) { super(chemFile); } public CMLReactionModule(ICMLModule conv) { super(conv); logger.debug("New CML-Reaction Module!"); } public void startElement(CMLStack xpath, String uri, String local, String raw, Attributes atts) { if ("reaction".equals(local)) {// cdo.startObject("Reaction"); if (currentReactionSet == null) currentReactionSet = currentChemFile.getBuilder().newReactionSet(); currentReaction = currentChemFile.getBuilder().newReaction(); String id = atts.getValue("id"); if(id != null) currentReaction.setID(id);// cdo.setObjectProperty("Reaction", "id", id); } else if ("reactionList".equals(local)) {// cdo.startObject("ReactionSet"); currentReactionSet = currentChemFile.getBuilder().newReactionSet(); String id = atts.getValue("id"); if(id != null) currentReactionSet.setID(id);// cdo.setObjectProperty("reactionList", "id", id); } else if ("reactant".equals(local)) {// cdo.startObject("Reactant"); if (currentReaction == null) { if (currentReactionSet == null) currentReactionSet = currentChemFile.getBuilder().newReactionSet(); currentReaction = currentChemFile.getBuilder().newReaction(); } currentMolecule = currentChemFile.getBuilder().newMolecule(); objectType = "Reactant"; String id = atts.getValue("id"); if(id != null) currentMolecule.setID(id);// cdo.setObjectProperty("Reactant", "id", id); } else if ("product".equals(local)) {// cdo.startObject("Product"); if (currentReaction == null) { if (currentReactionSet == null) currentReactionSet = currentChemFile.getBuilder().newReactionSet(); currentReaction = currentChemFile.getBuilder().newReaction(); } currentMolecule = currentChemFile.getBuilder().newMolecule(); objectType = "Product"; String id = atts.getValue("id"); if(id != null) currentMolecule.setID(id);// cdo.setObjectProperty("Product", "id", id); } else if ("substance".equals(local)) {// cdo.startObject("Agent"); if (currentReaction == null) { if (currentReactionSet == null) currentReactionSet = currentChemFile.getBuilder().newReactionSet(); currentReaction = currentChemFile.getBuilder().newReaction(); } currentMolecule = currentChemFile.getBuilder().newMolecule(); objectType = "Agent"; String id = atts.getValue("id"); if(id != null) currentMolecule.setID(id);// cdo.setObjectProperty("Agent", "id", id); } else if ("molecule".equals(local)) { // do nothing for now super.newMolecule(); String id = atts.getValue("id"); if(id != null) {// cdo.setObjectProperty(objectType, "id", id); currentMolecule.setID(id); } } else { super.startElement(xpath, uri, local, raw, atts); } } public void endElement(CMLStack xpath, String uri, String local, String raw) { if ("reaction".equals(local)) {// cdo.endObject("Reaction"); currentReactionSet.addReaction(currentReaction); } else if ("reactionList".equals(local)) {// cdo.endObject("ReactionSet"); currentChemModel.setReactionSet(currentReactionSet); currentChemSequence.addChemModel(currentChemModel); /* FIXME: this should be when document is closed! */ } else if ("reactant".equals(local)) {// cdo.endObject("Reactant"); currentReaction.addReactant((IMolecule)currentMolecule); } else if ("product".equals(local)) {// cdo.endObject("Product"); currentReaction.addProduct((IMolecule)currentMolecule); } else if ("substance".equals(local)) {// cdo.endObject("Agent"); currentReaction.addAgent((IMolecule)currentMolecule); } else if ("molecule".equals(local)) { logger.debug("Storing Molecule"); super.storeData(); // do nothing else but store atom/bond information } else { super.endElement(xpath, uri, local, raw); } }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -