about objects name
Hi,
I have object that create a table and return scroll with this table into a dialog.
every mouse click I creat another table........to else dialog.
I don't know how to create every time this object that not run over the previous to him - because I will use the previous when this dialog will kill.
I'm thinking if I'll rename this object with else name in the "new", I'll save the previous object.
How can I set a different names?
I tried this, but it's an error:
int index = GlobalTablesProperties.getInstance().getTableLevel();
String tableName ="table";
tableName += index;
MyTable tableName =new MyTable();
myDialog.add(tableName .getScrollTable());

