org.formproc
Interface FormElementGroup

All Known Implementing Classes:
AbstractFormElementGroup

public interface FormElementGroup

Base interface for a group of FormElements where elements can get references to other form elements so that elements can validate based on the results of other elements. This is useful for situations where including information in one field will require that other fields are valid.

Author:
Anthony Eden

Method Summary
 java.util.List getFormElements()
          Get the List of FormElements in this group.
 java.lang.String getName()
          Get the form element group name.
 Validator getValidator()
          Get the Validator for this element group.
 

Method Detail

getName

public java.lang.String getName()
Get the form element group name.

Returns:
The name

getFormElements

public java.util.List getFormElements()
Get the List of FormElements in this group.

Returns:
A List of FormElement objects

getValidator

public Validator getValidator()
Get the Validator for this element group.

Returns:
A Validator


Copyright (c) 2001-2003 Anthony Eden. All Rights Reserved.