示例#1
0
 private static void renderShells(Display display) throws IOException {
   RenderVisitor visitor = new RenderVisitor();
   for (Shell shell : getShells(display)) {
     WidgetTreeVisitor.accept(shell, visitor);
     visitor.reThrowProblem();
   }
 }
示例#2
0
 @Override
 public String toString() {
   return RenderVisitor.render(this);
 }