public static class Runner { Stopwatch stopwatch; private String name; private int speed; public Runner(String name, int speed) { this.name = name; this.speed = speed; this.stopwatch = new Stopwatch(this); // 9 } ... public static class Stopwatch extends Thread { private Runner owner; private int stepNumber; public Stopwatch(Runner runner) { this.owner = runner; }