neuroml.channel
Class KSGate

java.lang.Object
  extended by neuroml.channel.KSGate

public class KSGate
extends java.lang.Object

Gate with kinetic scheme transitions

Java class for KSGate complex type.

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

 <complexType name="KSGate">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="state" type="{http://morphml.org/channelml/schema}KSState" maxOccurs="unbounded"/>
         <element name="transition" type="{http://morphml.org/channelml/schema}Transition" maxOccurs="unbounded"/>
       </sequence>
     </restriction>
   </complexContent>
 </complexType>
 


Field Summary
protected  java.util.List<KSState> state
           
protected  java.util.List<Transition> transition
           
 
Constructor Summary
KSGate()
           
 
Method Summary
 java.util.List<KSState> getState()
          Gets the value of the state property.
 java.util.List<Transition> getTransition()
          Gets the value of the transition property.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

state

protected java.util.List<KSState> state

transition

protected java.util.List<Transition> transition
Constructor Detail

KSGate

public KSGate()
Method Detail

getState

public java.util.List<KSState> getState()
Gets the value of the state 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 state property.

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

    getState().add(newItem);
 

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


getTransition

public java.util.List<Transition> getTransition()
Gets the value of the transition 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 transition property.

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

    getTransition().add(newItem);
 

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



NeuroML API (v1.4)