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
-
table
- Le tableau de string 2 D a englober par un objet
-
StringTable(String[][])
- encapsulation d'un tableau 2D de String en un objet
-
getTable()
- Get the value of table.
-
setTable(String[][])
- Set the value of table.
table
private String table[][]
- Le tableau de string 2 D a englober par un objet
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
getTable
public String[][] getTable()
- Get the value of table.
- Returns:
- Value of table.
setTable
public void setTable(String v[][])
- Set the value of table.
- Parameters:
- v - Value to assign to table.