public void xstart() {
FlowController.setHistoryManager(new SimpleSessionHistoryManager());
FlowContext context = new FlowContext();
context.add("stream", new ViewSourcePanel(new StreamingExample(), StreamingExample.class));
context.add("animation", new ViewSourcePanel(new AnimationExample(), AnimationExample.class));
context.add("gridform", new ViewSourcePanel(new GridFormExample(), GridFormExample.class));
context.add("softscroll", new ViewSourcePanel(new SoftScrollAreaExample(), SoftScrollAreaExample.class));
context.add("table",new ViewSourcePanel(new TableExample(), TableExample.class));
context.add("keys", new ViewSourcePanel(new KeyBindingExample(), KeyBindingExample.class) );
context.add("flickr", new ViewSourcePanel(new FlickrExample(), FlickrExample.class));
context.add("contextmenu", new ViewSourcePanel( new ContextMenuExample(), ContextMenuExample.class));
context.add("storage", new ViewSourcePanel(new ClientStorageExample(), ClientStorageExample.class));
SimplePanel sp = new SimplePanel();
FlowController.setFlowContext(sp, context);
FlowTabPanel tabs = new FlowTabPanel(sp, context);