Class Projection
- All Implemented Interfaces:
org.jvnet.jaxb2_commons.lang.ToString2
Java class for Projection complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="Projection"> <complexContent> <extension base="{http://www.neuroml.org/schema/neuroml2}BaseProjection"> <sequence> <element name="connection" type="{http://www.neuroml.org/schema/neuroml2}Connection" maxOccurs="unbounded" minOccurs="0"/> <element name="connectionWD" type="{http://www.neuroml.org/schema/neuroml2}ConnectionWD" maxOccurs="unbounded" minOccurs="0"/> </sequence> <attribute name="synapse" use="required" type="{http://www.neuroml.org/schema/neuroml2}NmlId" /> </extension> </complexContent> </complexType>
-
Field Summary
Modifier and TypeFieldDescriptionprotected List<Connection>
protected List<ConnectionWD>
protected String
Fields inherited from class org.neuroml.model.BaseProjection
postsynapticPopulation, presynapticPopulation
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionappend
(org.jvnet.jaxb2_commons.locator.ObjectLocator locator, StringBuilder buffer, org.jvnet.jaxb2_commons.lang.ToStringStrategy2 strategy) appendFields
(org.jvnet.jaxb2_commons.locator.ObjectLocator locator, StringBuilder buffer, org.jvnet.jaxb2_commons.lang.ToStringStrategy2 strategy) Gets the value of the connection property.Gets the value of the connectionWD property.Gets the value of the synapse property.void
setSynapse
(String value) Sets the value of the synapse property.toString()
Methods inherited from class org.neuroml.model.BaseProjection
getPostsynapticPopulation, getPresynapticPopulation, setPostsynapticPopulation, setPresynapticPopulation
-
Field Details
-
connection
-
connectionWD
-
synapse
-
-
Constructor Details
-
Projection
public Projection()
-
-
Method Details
-
getConnection
Gets the value of the connection 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 connection property.For example, to add a new item, do as follows:
getConnection().add(newItem);
Objects of the following type(s) are allowed in the list
Connection
-
getConnectionWD
Gets the value of the connectionWD 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 connectionWD property.For example, to add a new item, do as follows:
getConnectionWD().add(newItem);
Objects of the following type(s) are allowed in the list
ConnectionWD
-
getSynapse
Gets the value of the synapse property.- Returns:
- possible object is
String
-
setSynapse
Sets the value of the synapse property.- Parameters:
value
- allowed object isString
-
toString
- Overrides:
toString
in classBaseProjection
-
append
public StringBuilder append(org.jvnet.jaxb2_commons.locator.ObjectLocator locator, StringBuilder buffer, org.jvnet.jaxb2_commons.lang.ToStringStrategy2 strategy) - Specified by:
append
in interfaceorg.jvnet.jaxb2_commons.lang.ToString2
- Overrides:
append
in classBaseProjection
-
appendFields
public StringBuilder appendFields(org.jvnet.jaxb2_commons.locator.ObjectLocator locator, StringBuilder buffer, org.jvnet.jaxb2_commons.lang.ToStringStrategy2 strategy) - Specified by:
appendFields
in interfaceorg.jvnet.jaxb2_commons.lang.ToString2
- Overrides:
appendFields
in classBaseProjection
-