Class Cellule

java.lang.Object
   |
   +----Cellule

public class Cellule
extends Object
Une classe pour manipuler des cellules d'une liste chainee.


Constructor Index

 o Cellule()
Les constructeurs initialisent le tableau
 o Cellule(int)

Method Index

 o afficheInfo()
La méthode afficheInfo envoie sur la sortie standard le champ info
 o link(Cellule, Cellule)
La méthode link relie une cellule a deux autres.
 o toString()
La méthode toString envoie sur la sortie standard le champ info

Constructors

 o Cellule
  public Cellule()
Les constructeurs initialisent le tableau

 o Cellule
  public Cellule(int data)

Methods

 o link
  public void link(Cellule avant,
                   Cellule apres)
La méthode link relie une cellule a deux autres.

 o afficheInfo
  public void afficheInfo()
La méthode afficheInfo envoie sur la sortie standard le champ info

 o toString
  public String toString()
La méthode toString envoie sur la sortie standard le champ info

Overrides:
toString in class Object