use of cbit.vcell.math.InsideVariable in project vcell by virtualcell.
the class XmlReader method getInsideVariable.
/**
* This method returns an InsideVariable object from a XML Element
* Creation date: (5/18/2001 6:14:42 PM)
* @return cbit.vcell.math.InsideVariable
* @param param org.jdom.Element
*/
private InsideVariable getInsideVariable(Element param) {
// Get name
String name = unMangle(param.getAttributeValue(XMLTags.NameAttrTag));
// get VolVariableRef
String volvarName = unMangle(param.getAttributeValue(XMLTags.VolumeVariableAttrTag));
// *** create new InsideVariable ***
InsideVariable variable = new InsideVariable(name, volvarName);
transcribeComments(param, variable);
return variable;
}
Aggregations