neuroml.channel
Class RateConstantEqn

java.lang.Object
  extended by neuroml.channel.RateConstantEqn
Direct Known Subclasses:
AkdEquation

public class RateConstantEqn
extends java.lang.Object

Definition of a rate constant equation. This is currently onlu used when mapped to either AkdEquation or GenericEquation

Java class for RateConstantEqn complex type.

The following schema fragment specifies the expected content contained within this class.

 <complexType name="RateConstantEqn">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="parameter" type="{http://morphml.org/channelml/schema}Parameter" maxOccurs="unbounded" minOccurs="0"/>
       </sequence>
       <attribute name="expr" type="{http://www.w3.org/2001/XMLSchema}string" />
       <attribute name="type" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
     </restriction>
   </complexContent>
 </complexType>
 


Field Summary
protected  java.lang.String expr
           
protected  java.util.List<Parameter> parameter
           
protected  java.lang.String type
           
 
Constructor Summary
RateConstantEqn()
           
 
Method Summary
 java.lang.String getExpr()
          Gets the value of the expr property.
 java.util.List<Parameter> getParameter()
          Gets the value of the parameter property.
 java.lang.String getType()
          Gets the value of the type property.
 void setExpr(java.lang.String value)
          Sets the value of the expr property.
 void setType(java.lang.String value)
          Sets the value of the type property.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

parameter

protected java.util.List<Parameter> parameter

expr

protected java.lang.String expr

type

protected java.lang.String type
Constructor Detail

RateConstantEqn

public RateConstantEqn()
Method Detail

getParameter

public java.util.List<Parameter> getParameter()
Gets the value of the parameter property.

This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a set method for the parameter property.

For example, to add a new item, do as follows:

    getParameter().add(newItem);
 

Objects of the following type(s) are allowed in the list Parameter


getExpr

public java.lang.String getExpr()
Gets the value of the expr property.

Returns:
possible object is String

setExpr

public void setExpr(java.lang.String value)
Sets the value of the expr property.

Parameters:
value - allowed object is String

getType

public java.lang.String getType()
Gets the value of the type property.

Returns:
possible object is String

setType

public void setType(java.lang.String value)
Sets the value of the type property.

Parameters:
value - allowed object is String


NeuroML API (v1.4)