neuroidnet.ntr
Class Dendrite

java.lang.Object
  |
  +--java.util.AbstractCollection
        |
        +--java.util.AbstractList
              |
              +--java.util.Vector
                    |
                    +--neuroidnet.ntr.Dendrite
All Implemented Interfaces:
Cloneable, Collection, List, RandomAccess, Serializable

public class Dendrite
extends Vector

Dendrite is a Vector that holds incoming Synapses belonging to a neuroid. Its functionality is similar to that of AxonArbor, although differing in organizational location of synapses. The latter is a list of synapses associated with an axon, whereas this one is the synapses on a dendrite.

Created: Sun Nov 4 00:26:26 2001

Modified: $Date: 2002/03/24 21:38:08 $

Version:
$Revision: 1.2 $ for this file.
Author:
Cengiz Gunay
See Also:
ntr.AxonArbor, Serialized Form

Field Summary
 
Fields inherited from class java.util.Vector
capacityIncrement, elementCount, elementData
 
Fields inherited from class java.util.AbstractList
modCount
 
Constructor Summary
Dendrite()
           
 
Method Summary
 boolean add(Synapse synapse)
          Adds a synapse to the vector.
 
Methods inherited from class java.util.Vector
add, add, addAll, addAll, addElement, capacity, clear, clone, contains, containsAll, copyInto, elementAt, elements, ensureCapacity, equals, firstElement, get, hashCode, indexOf, indexOf, insertElementAt, isEmpty, lastElement, lastIndexOf, lastIndexOf, remove, remove, removeAll, removeAllElements, removeElement, removeElementAt, removeRange, retainAll, set, setElementAt, setSize, size, subList, toArray, toArray, toString, trimToSize
 
Methods inherited from class java.util.AbstractList
iterator, listIterator, listIterator
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface java.util.List
iterator, listIterator, listIterator
 

Constructor Detail

Dendrite

public Dendrite()
Method Detail

add

public boolean add(Synapse synapse)
Adds a synapse to the vector.

Parameters:
synapse -
See Also:
ntr.AxonArbor#addSynapse