Class StringTable

java.lang.Object
   |
   +----StringTable

public class StringTable
extends Object
Classe encapsulant un tableau de string a 2 dimension afin de pouvoir les mettres comme arguments des messages transitant entre les Observer et les observable


Variable Index

 o table
Le tableau de string 2 D a englober par un objet

Constructor Index

 o StringTable(String[][])
encapsulation d'un tableau 2D de String en un objet

Method Index

 o getTable()
Get the value of table.
 o setTable(String[][])
Set the value of table.

Variables

 o table
 private String table[][]
Le tableau de string 2 D a englober par un objet

Constructors

 o StringTable
 public StringTable(String st[][])
encapsulation d'un tableau 2D de String en un objet

Parameters:
st - Le tableau de string 2 D a englober par un objet

Methods

 o getTable
 public String[][] getTable()
Get the value of table.

Returns:
Value of table.
 o setTable
 public void setTable(String v[][])
Set the value of table.

Parameters:
v - Value to assign to table.