com.izforge.izpack.panels
Interface ProcessingClient

All Known Implementing Classes:
PasswordGroup, RuleInputField

public interface ProcessingClient

Implement this interface in any class that wants to use processing or validation services.

Version:
0.0.1 / 2/22/03
Author:
Elmar Grom
See Also:
Processor, Validator

Method Summary
 java.lang.String getFieldContents(int index)
          Returns the contents of the field indicated by index.
 int getNumFields()
          Returns the number of sub-fields.
 

Method Detail

getNumFields

public int getNumFields()
Returns the number of sub-fields.

Returns:
the number of sub-fields

getFieldContents

public java.lang.String getFieldContents(int index)
Returns the contents of the field indicated by index.

Parameters:
index - the index of the sub-field from which the contents is requested.
Returns:
the contents of the indicated sub-field.
Throws:
java.lang.IndexOutOfBoundsException - if the index is out of bounds.