public Table getHeaderTable(IWContext iwc) {
    Table headerTable = new Table();
    headerTable.setCellpaddingAndCellspacing(0);
    int column = 1;

    TextInput tiSearchString = new TextInput(this.PARAMETER_SEARCH);
    SubmitButton sSearch = new SubmitButton(this.iwrb.getLocalizedImageButton("search", "Search"));

    headerTable.add(getText(this.iwrb.getLocalizedString("search", "Search") + ":"), column++, 1);
    headerTable.setCellpaddingLeft(column, 1, 6);
    headerTable.add(tiSearchString, column++, 1);
    headerTable.setCellpaddingLeft(column, 1, 6);
    headerTable.add(sSearch, column++, 1);

    return headerTable;
  }