Statistics
| Revision:

root / import / ext3D / trunk / install-extension3d / IzPack / src / lib / com / izforge / izpack / util / CleanupClient.java @ 15280

History | View | Annotate | Download (1.78 KB)

1
/*
2
 * $Id: CleanupClient.java,v 1.1 2006/06/14 07:29:07 cesar Exp $
3
 * IzPack 
4
 * Copyright (C) 2002 by Elmar Grom
5
 *
6
 * File :               CleanupClient.java
7
 * Description :        Interface for classes that use Housekeeper
8
 * Author's email :     elmar@grom.net
9
 * Website :            http://www.izforge.com
10
 *
11
 * This program is free software; you can redistribute it and/or
12
 * modify it under the terms of the GNU General Public License
13
 * as published by the Free Software Foundation; either version 2
14
 * of the License, or any later version.
15
 *
16
 * This program is distributed in the hope that it will be useful,
17
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19
 * GNU General Public License for more details.
20
 *
21
 * You should have received a copy of the GNU General Public License
22
 * along with this program; if not, write to the Free Software
23
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
24
 */
25

    
26
package   com.izforge.izpack.util;
27

    
28
/*---------------------------------------------------------------------------*/
29
/**
30
 * Any class that wants to perform cleanup operations and to be notified by
31
 * <code>Hosekeeper</code> for this purpose must implement this interface.
32
 *
33
 * @version  0.0.1 / 2/9/02
34
 * @author   Elmar Grom
35
 */
36
/*---------------------------------------------------------------------------*/
37
public interface CleanupClient
38
{
39
 /*--------------------------------------------------------------------------*/
40
 /**
41
  * Performs custom cleanup operations.
42
  */
43
 /*--------------------------------------------------------------------------*/
44
  public void cleanUp ();
45
}
46
/*---------------------------------------------------------------------------*/