+ a "!" in Log-Details-View now indicates whether a file is still existing or not

+ committed additional files
This commit is contained in:
mbirth 2005-01-19 00:18:39 +00:00
parent 99e0d89ce3
commit 476a526fcc
4 changed files with 8 additions and 2 deletions

View File

@ -203,7 +203,7 @@ public class JUninstaller extends Frame implements ActionListener {
} else if (ae.getSource().equals(btDetails)) { // Details of log-entry
String selItem = ltView.getSelectedItem();
if (selItem != null) {
String mbt = selItem.substring(2);
String mbt = selItem.substring(selItem.indexOf(" ")+1);
File flDet = new File(mbt);
if (flDet.exists()) {
mbt += "\n\nSize: "+flDet.length()+" Bytes";

View File

@ -329,7 +329,13 @@ public class MyFilesystemParser {
tmp[i] = result[i];
}
tab = ln.indexOf("\t");
tmp[tmp.length-1] = ln.substring(0, tab)+" "+ln.substring(tab+1, ln.indexOf("\t", tab+1));
String fn = ln.substring(tab+1, ln.indexOf("\t", tab+1));
File fl = new File(fn);
String status = ln.substring(0, tab);
if (!fl.exists()) {
status += "!";
}
tmp[tmp.length-1] = status+" "+fn;
result = tmp;
ln = in.readLine();
}

Binary file not shown.

Binary file not shown.