datastructures
Class Knoop<K extends java.lang.Comparable<K>,V>

java.lang.Object
  extended by datastructures.Knoop<K,V>

public class Knoop<K extends java.lang.Comparable<K>,V>
extends java.lang.Object


Constructor Summary
Knoop(K key, V value, Knoop<K,V> links, Knoop<K,V> rechts)
           
 
Method Summary
 K getKey()
           
 Knoop<K,V> getLinks()
           
 Knoop<K,V> getRechts()
           
 V getValue()
           
 void setKey(K key)
           
 void setLinks(Knoop<K,V> links)
           
 void setRechts(Knoop<K,V> rechts)
           
 void setValue(V value)
           
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Knoop

public Knoop(K key,
             V value,
             Knoop<K,V> links,
             Knoop<K,V> rechts)
Method Detail

getKey

public K getKey()

setKey

public void setKey(K key)

getValue

public V getValue()

setValue

public void setValue(V value)

getLinks

public Knoop<K,V> getLinks()

setLinks

public void setLinks(Knoop<K,V> links)

getRechts

public Knoop<K,V> getRechts()

setRechts

public void setRechts(Knoop<K,V> rechts)