private void addTableRow(LightProcessDefinition pd) {
   Item woItem = table.addItem(pd);
   woItem.getItemProperty("name").setValue(pd.getLabel());
   woItem.getItemProperty("version").setValue(pd.getVersion());
   woItem.getItemProperty("deployedBy").setValue(pd.getDeployedBy());
   TableLinkButton tlb =
       new TableLinkButton(
           ProcessbaseApplication.getCurrent().getPbMessages().getString("btnRemove"),
           "icons/cancel.png",
           pd,
           this);
   woItem.getItemProperty("actions").setValue(tlb);
 }