1 package com.loribel.commons.abstraction;
2
3 import java.awt.*;
4
5 /***
6 * Interface.
7 *
8 * @author Gregory Borelli
9 */
10 public interface GB_LongActionAfter
11 {
12 void doAfterAction(
13 Component a_parent,
14 Object a_value);
15
16 }