ToolStripButton sourceButton = new ToolStripButton();
sourceButton.setTitle("View Source");
sourceButton.setIcon("silk/page_white_cup.png");
final SourceEntity[] finalSourceUrls = sourceUrls;
sourceButton.addClickHandler(new ClickHandler() {
public void onClick(ClickEvent event) {
showSource(finalSourceUrls, 640, 600);
}
});
topBar.addMember(sourceButton);