use of cbit.vcell.solver.AnnotatedFunction in project vcell by virtualcell.
the class ApplicationMathTable method convertOutputFunctionXMLToFuncList.
private ArrayList<AnnotatedFunction> convertOutputFunctionXMLToFuncList(String outputFunctionsXML) throws XmlParseException {
Element outputFunctionElement = XmlUtil.stringToXML(outputFunctionsXML, null).getRootElement();
ArrayList<AnnotatedFunction> outputFunctionList = (new XmlReader(false)).getOutputFunctions(outputFunctionElement);
return outputFunctionList;
}
Aggregations