public @interface OnRefresh
Section
  requests a refresh of the content.
 For example:
  @DiffSectionSpec
  public class MyChangeSetSpec {
   @OnRefresh
   protected void onRefresh(
     ListContext c,
     Service service) {
       service.refetch();
   }
 }