neuroml.morph
Class CableGroup

java.lang.Object
  extended by neuroml.morph.CableGroup

public class CableGroup
extends java.lang.Object

Definition of a cable group. Cable groups can also be specified by adding an element group to the cable element

Java class for CableGroup complex type.

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

 <complexType name="CableGroup">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="cable" maxOccurs="unbounded">
           <complexType>
             <complexContent>
               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
                 <attribute name="id" use="required" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger" />
               </restriction>
             </complexContent>
           </complexType>
         </element>
         <element name="inhomogeneous_param" type="{http://morphml.org/morphml/schema}InhomogeneousParam" maxOccurs="unbounded" minOccurs="0"/>
       </sequence>
       <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
     </restriction>
   </complexContent>
 </complexType>
 


Nested Class Summary
static class CableGroup.Cable
          Java class for anonymous complex type.
 
Field Summary
protected  java.util.List<CableGroup.Cable> cable
           
protected  java.util.List<InhomogeneousParam> inhomogeneousParam
           
protected  java.lang.String name
           
 
Constructor Summary
CableGroup()
           
 
Method Summary
 java.util.List<CableGroup.Cable> getCable()
          Gets the value of the cable property.
 java.util.List<InhomogeneousParam> getInhomogeneousParam()
          Gets the value of the inhomogeneousParam property.
 java.lang.String getName()
          Gets the value of the name property.
 void setName(java.lang.String value)
          Sets the value of the name property.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

cable

protected java.util.List<CableGroup.Cable> cable

inhomogeneousParam

protected java.util.List<InhomogeneousParam> inhomogeneousParam

name

protected java.lang.String name
Constructor Detail

CableGroup

public CableGroup()
Method Detail

getCable

public java.util.List<CableGroup.Cable> getCable()
Gets the value of the cable 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 cable property.

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

    getCable().add(newItem);
 

Objects of the following type(s) are allowed in the list CableGroup.Cable


getInhomogeneousParam

public java.util.List<InhomogeneousParam> getInhomogeneousParam()
Gets the value of the inhomogeneousParam 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 inhomogeneousParam property.

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

    getInhomogeneousParam().add(newItem);
 

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


getName

public java.lang.String getName()
Gets the value of the name property.

Returns:
possible object is String

setName

public void setName(java.lang.String value)
Sets the value of the name property.

Parameters:
value - allowed object is String


NeuroML API (v1.4)