Package org.sbml.jsbml

Examples of org.sbml.jsbml.AbstractSBase


      ((Model) treeNode).setNamespace(sbmlNamespace);

      for (Object child : listOfElementsToWrite) {
        if (child instanceof AbstractSBase && ((AbstractSBase) child).getNamespace() == null) {
          AbstractSBase sbase = (AbstractSBase) child;
          logger.debug("Found one suspect Model child: " + sbase.getElementName() + ". Setting the SBML namespace to it.");
          sbase.setNamespace(sbmlNamespace);
        }
      }
    }

    return listOfElementsToWrite;
View Full Code Here

TOP

Related Classes of org.sbml.jsbml.AbstractSBase

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.