public String getValue( final Global global ) {
return global.getClassName();
}
};
final ButtonCell deleteGlobalButton = new ButtonCell( ButtonSize.SMALL );
deleteGlobalButton.setType( ButtonType.DANGER );
deleteGlobalButton.setIcon( IconType.MINUS_SIGN );
final Column<Global, String> deleteGlobalColumn = new Column<Global, String>( deleteGlobalButton ) {
@Override
public String getValue( final Global global ) {
return GlobalsEditorConstants.INSTANCE.remove();
}