View Javadoc

1   package com.loribel.commons.abstraction;
2   
3   /***
4    * Interface cancelable.
5    *
6    * @author Grégory Borelli
7    */
8   public interface GB_Cancelable
9   {
10  
11      /***
12       * Returns treu if cancel is accepted.
13       */
14      boolean cancel();
15  
16  }