public Object getValueAt(int row, int col) {
switch(col) {
case 0: {
int id = archive.entrys[row].getNameID();
String filename = files.getValueNo(id);
return new AdvJTableCell(id, filename);
}
case 1: return archive.entrys[row].getUniqID();
case 2: return MODF_Entry.translate(archive.entrys[row].getX());
case 3: return MODF_Entry.translate(archive.entrys[row].getY());
case 4: return archive.entrys[row].getZ();