sky.engine.form
Interface Form

All Known Implementing Classes:
BaseForm, ConsoleForm, HttpForm, HttpImageForm

public interface Form


Method Summary
 void addField(Field f)
          field manipulation functions
 void clear()
           
 void destroy()
          administrative functions
 void execute()
           
 Field getField(java.lang.String name)
           
 int getFieldCount()
           
 java.util.Hashtable getFields()
           
 void popField(Field f)
           
 void validate()
           
 

Method Detail

destroy

public void destroy()
administrative functions


validate

public void validate()
              throws Message
Throws:
Message

clear

public void clear()

execute

public void execute()
             throws Message
Throws:
Message

addField

public void addField(Field f)
              throws Message
field manipulation functions

Throws:
Message

popField

public void popField(Field f)
              throws Message
Throws:
Message

getField

public Field getField(java.lang.String name)
               throws Message
Throws:
Message

getFields

public java.util.Hashtable getFields()
                              throws Message
Throws:
Message

getFieldCount

public int getFieldCount()
                  throws Message
Throws:
Message