Search in sources :

Example 6 with InsideVariable

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;
}
Also used : InsideVariable(cbit.vcell.math.InsideVariable)

Aggregations

InsideVariable (cbit.vcell.math.InsideVariable)6 OutsideVariable (cbit.vcell.math.OutsideVariable)5 Variable (cbit.vcell.math.Variable)5 MemVariable (cbit.vcell.math.MemVariable)4 ReservedVariable (cbit.vcell.math.ReservedVariable)4 VolVariable (cbit.vcell.math.VolVariable)4 Constant (cbit.vcell.math.Constant)3 FilamentRegionVariable (cbit.vcell.math.FilamentRegionVariable)3 FilamentVariable (cbit.vcell.math.FilamentVariable)3 Function (cbit.vcell.math.Function)3 MembraneRegionVariable (cbit.vcell.math.MembraneRegionVariable)3 VolumeRegionVariable (cbit.vcell.math.VolumeRegionVariable)3 CompartmentSubDomain (cbit.vcell.math.CompartmentSubDomain)2 FilamentSubDomain (cbit.vcell.math.FilamentSubDomain)2 MathException (cbit.vcell.math.MathException)2 MembraneSubDomain (cbit.vcell.math.MembraneSubDomain)2 ParticleVariable (cbit.vcell.math.ParticleVariable)2 PointSubDomain (cbit.vcell.math.PointSubDomain)2 PointVariable (cbit.vcell.math.PointVariable)2 SubDomain (cbit.vcell.math.SubDomain)2