# HG changeset patch # User Marcus Pearce # Date 1330594766 0 # Node ID f0cd8f32e8c896bc07baa8c411a2707f00a6ed75 # Parent 0c52059349360bad0c2e15e7267edb8ce004a5c3 Make print out of probe positions indexed from 1 to match filelist. diff -r 0c5205934936 -r f0cd8f32e8c8 FileList.class Binary file FileList.class has changed diff -r 0c5205934936 -r f0cd8f32e8c8 FileList.java --- a/FileList.java Wed Jan 25 13:30:28 2012 +0000 +++ b/FileList.java Thu Mar 01 09:39:26 2012 +0000 @@ -2,7 +2,7 @@ * File: FileList.java * Author: Marcus Pearce * Created: <2007-11-30 10:30:38 marcusp> - * Time-stamp: <2011-11-04 18:05:36 marcusp> + * Time-stamp: <2012-03-01 09:35:00 marcusp> *============================================================================= */ @@ -100,9 +100,11 @@ while (fi.hasNext()) { System.out.print((String)fi.next() + ": "); ArrayList ip = (ArrayList)pi.next(); - Iterator ipi = ip.iterator(); - while (ipi.hasNext()) - System.out.print(ipi.next() + " "); + + for (int i = 0; i < ip.size(); i++) { + int ppos = ((Integer)ip.get(i)).intValue() + 1; + System.out.print(ppos + " "); + } System.out.print("\n"); } } diff -r 0c5205934936 -r f0cd8f32e8c8 Icons/FastForward16.gif Binary file Icons/FastForward16.gif has changed diff -r 0c5205934936 -r f0cd8f32e8c8 Icons/FastForward24.gif Binary file Icons/FastForward24.gif has changed diff -r 0c5205934936 -r f0cd8f32e8c8 Icons/Movie16.gif Binary file Icons/Movie16.gif has changed diff -r 0c5205934936 -r f0cd8f32e8c8 Icons/Movie24.gif Binary file Icons/Movie24.gif has changed diff -r 0c5205934936 -r f0cd8f32e8c8 Icons/Pause16.gif Binary file Icons/Pause16.gif has changed diff -r 0c5205934936 -r f0cd8f32e8c8 Icons/Pause24.gif Binary file Icons/Pause24.gif has changed diff -r 0c5205934936 -r f0cd8f32e8c8 Icons/Play16.gif Binary file Icons/Play16.gif has changed diff -r 0c5205934936 -r f0cd8f32e8c8 Icons/Play24.gif Binary file Icons/Play24.gif has changed diff -r 0c5205934936 -r f0cd8f32e8c8 Icons/Rewind16.gif Binary file Icons/Rewind16.gif has changed diff -r 0c5205934936 -r f0cd8f32e8c8 Icons/Rewind24.gif Binary file Icons/Rewind24.gif has changed diff -r 0c5205934936 -r f0cd8f32e8c8 Icons/StepBack16.gif Binary file Icons/StepBack16.gif has changed diff -r 0c5205934936 -r f0cd8f32e8c8 Icons/StepBack24.gif Binary file Icons/StepBack24.gif has changed diff -r 0c5205934936 -r f0cd8f32e8c8 Icons/StepForward16.gif Binary file Icons/StepForward16.gif has changed diff -r 0c5205934936 -r f0cd8f32e8c8 Icons/StepForward24.gif Binary file Icons/StepForward24.gif has changed diff -r 0c5205934936 -r f0cd8f32e8c8 Icons/Stop16.gif Binary file Icons/Stop16.gif has changed diff -r 0c5205934936 -r f0cd8f32e8c8 Icons/Stop24.gif Binary file Icons/Stop24.gif has changed diff -r 0c5205934936 -r f0cd8f32e8c8 Icons/Volume16.gif Binary file Icons/Volume16.gif has changed diff -r 0c5205934936 -r f0cd8f32e8c8 Icons/Volume24.gif Binary file Icons/Volume24.gif has changed