| 190 |  | while(i.hasNext()) { | 
 
 
 
 
 
 
 
 
 
 
 
 
 | 191 |  | // get a refence to the component | 
 
 
 
 
 
 
 
 
 
 
 
 
 | 192 |  | component = (Component) i.next(); | 
 
 
 
 
 
 
 
 
 
 
 | 193 | < | System.out.println(toString + ": starting component - " + component.toString()); | 
 
 
 
 
 
 
 
 
 | 193 | > | System.out.println(toString + ": dependency checking component - " + component.toString()); | 
 
 
 
 
 
 
 
 
 
 
 | 194 |  |  | 
 
 
 
 
 
 
 
 
 
 
 
 
 | 195 |  | // check it's dependencies | 
 
 
 
 
 
 
 
 
 
 
 
 
 | 196 |  | boolean depOK = component.depCheck(); | 
 
 
 
 
 
 
 
 
 
 
 
 
 | 197 |  | if(depOK) { | 
 
 
 
 
 
 
 
 | 198 | + | System.out.println(toString + ": starting component - " + component.toString()); | 
 
 
 
 
 
 
 
 
 
 
 
 
 | 199 |  | // it should be ok to start the component | 
 
 
 
 
 
 
 
 
 
 
 
 
 | 200 |  | try { | 
 
 
 
 
 
 
 
 
 
 
 
 
 | 201 |  | // start the component |