JMPanel panel;
Label label;
this.setLayout ( new BorderLayout(6,6) );
panel = new JMPanel ( new BorderLayout(6,6) );
this.add ( panel, BorderLayout.NORTH );
panelLabels = new JMPanel ( new GridLayout(0,1,0,0) );
panel.add ( panelLabels, BorderLayout.WEST );
panelData = new JMPanel ( new GridLayout(0,1,0,0) );
panel.add ( panelData, BorderLayout.CENTER );
label = new Label ( LABEL_SSRC );
panelLabels.add ( label );
fieldSSRC = new Label ();
panelData.add ( fieldSSRC );
panel = new JMPanel ( new BorderLayout(6,6) );
this.add ( panel, BorderLayout.CENTER );
panelSrcDescr = new ViewSourceDescription ( null );
panel.add ( panelSrcDescr, BorderLayout.NORTH );
updateFields ( reportReceiver );