return saveMenuItem;
}
private void fillStatus()
{
Status tmpStatus = infoMgr.getStatus();
// first remove old rows
for(int i = 0; i < ((DefaultTableModel) jTblDriveList.getModel()).getRowCount(); i++)
{
((DefaultTableModel) jTblDriveList.getModel()).removeRow(i);
}
//jTblDriveList = getJTblDriveList();
for(MappingInformation mapInf : tmpStatus.getStati())
{
// create a new vector to add a row
Vector<String> vec = new Vector<String>();
// Device
vec.add(mapInf.getSourceVolume());