public XBRLContentWidget() {
/*DecoratorPanel decorPanel = new DecoratorPanel();
decorPanel.setWidth("100%");
decorPanel.setHeight("100%");*/
//
TabLayoutPanel tabPanel = new TabLayoutPanel(2.5, Unit.EM);
tabPanel.setAnimationDuration(1000);
tabPanel.getElement().getStyle().setMarginBottom(10.0, Unit.PX);
SimplePanel rawDataPanel = new SimplePanel();
TextArea rawData = new TextArea();
rawData.setText("The raw XML data will display here.");
rawDataPanel.add(rawData);
tabPanel.add(rawDataPanel, "Raw XML");
tabPanel.add(new SimplePanel(), "Interactive data");
//decorPanel.add(tabPanel);
initWidget(tabPanel);
}