neuroml.meta
Class Authors

java.lang.Object
  extended by neuroml.meta.Authors

public class Authors
extends java.lang.Object

A reference to an author Note: This element will most likely change when a new set of schema files is adopted for adding references, authors, citations, etc. See mailing lists for latest status

Java class for Authors complex type.

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

 <complexType name="Authors">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="modelAuthor" type="{http://morphml.org/metadata/schema}Person" maxOccurs="unbounded" minOccurs="0"/>
         <element name="modelTranslator" type="{http://morphml.org/metadata/schema}Person" maxOccurs="unbounded" minOccurs="0"/>
       </sequence>
     </restriction>
   </complexContent>
 </complexType>
 


Field Summary
protected  java.util.List<Person> modelAuthor
           
protected  java.util.List<Person> modelTranslator
           
 
Constructor Summary
Authors()
           
 
Method Summary
 java.util.List<Person> getModelAuthor()
          Gets the value of the modelAuthor property.
 java.util.List<Person> getModelTranslator()
          Gets the value of the modelTranslator property.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

modelAuthor

protected java.util.List<Person> modelAuthor

modelTranslator

protected java.util.List<Person> modelTranslator
Constructor Detail

Authors

public Authors()
Method Detail

getModelAuthor

public java.util.List<Person> getModelAuthor()
Gets the value of the modelAuthor 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 modelAuthor property.

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

    getModelAuthor().add(newItem);
 

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


getModelTranslator

public java.util.List<Person> getModelTranslator()
Gets the value of the modelTranslator 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 modelTranslator property.

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

    getModelTranslator().add(newItem);
 

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



NeuroML API (v1.4)