}
public static void fillBreadcrumb ( final WebBreadcrumb b )
{
// Radio buttons panel
final WebBreadcrumbPanel panel1 = new WebBreadcrumbPanel ( new HorizontalFlowLayout ( 4 ) );
panel1.add ( new WebRadioButton ( "1" ) );
panel1.add ( new WebRadioButton ( "2" ) );
panel1.add ( new WebRadioButton ( "3" ) );
SwingUtils.groupButtons ( panel1 );
b.add ( panel1 );
// Label and text field panel
final WebBreadcrumbPanel panel2 = new WebBreadcrumbPanel ( new HorizontalFlowLayout () );
panel2.add ( new WebLabel ( "Field:" ) );
final WebTextField textField = new WebTextField ( 5 );
SwingUtils.setFontSize ( textField, 8 );
panel2.add ( textField );
b.add ( panel2 );