Statistics
| Revision:

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

History | View | Annotate | Download (1.98 KB)

1
/*
2
 * $Id: Processor.java,v 1.1 2006/06/14 07:29:07 cesar Exp $
3
 * Copyright (C) 2002 Elmar Grom
4
 *
5
 * File :               Processor.java
6
 * Description :        This is the public interface of classes that 
7
 *                      provide processing services for the UserInputPanel.
8
 * Author's email :     elmar@grom.net
9
 * Author's 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.panels;
27

    
28
/*---------------------------------------------------------------------------*/
29
/**
30
 * Interface for classes that provide input field processing services.
31
 *
32
 * @see      com.izforge.izpack.panels.ProcessingClient
33
 *
34
 * @version  0.0.1 / 10/26/02
35
 * @author   Elmar Grom
36
 */
37
/*---------------------------------------------------------------------------*/
38
public interface Processor
39
{
40
 /*--------------------------------------------------------------------------*/
41
 /**
42
  * Processes the contend of an input field. 
43
  *
44
  * @param     client   the client object using the services of this processor.
45
  *
46
  * @return    The result of the encryption.
47
  */
48
 /*--------------------------------------------------------------------------*/
49
  public String process (ProcessingClient client);
50
}
51
/*---------------------------------------------------------------------------*/