context.add( "first", new Label("This is the first panel."));
context.add( "second", new Label("This is the second panel."));
context.add( "third", new Label("This is the third panel."));
FlowController.setFlowContext(content, context);
FlowController.setHistoryManager( new SimpleSessionHistoryManager() );
FlowTabPanel panel = new FlowTabPanel(content,context);
panel.addTab("first", new Label("1st"), null);
panel.addTab("second", new Label("2nd"), null);
panel.addTab("third", new Label("3rd"), null);