Uses of Class
sky.message.Message

Packages that use Message
sky.common Common components used by other SAF packages and classes. 
sky.engine.connector Database and Email wrapper classes. 
sky.engine.form Generic form processing classes. 
sky.message For automatic handling and reporting of success, status, and error conditions. 
 

Uses of Message in sky.common
 

Methods in sky.common that throw Message
 DatabaseConnector SkyContext.getDatabaseConnector(Form form)
          Get a database connection from the database connection pool.
 

Uses of Message in sky.engine.connector
 

Methods in sky.engine.connector that throw Message
 int DatabaseConnector.addQuery(java.lang.String sql)
          SAF based forms use this function to register SQL queries containing special tags for binding and mapping of field data to back-end relational schema.
 DBRowIterator DatabaseConnector.executeQuery(int qid)
          Execute the SELECT query identified with a specific id.
 int DatabaseConnector.executeUpdate(int qid)
          Execute an INSERT or UPDATE query
 

Constructors in sky.engine.connector that throw Message
DatabaseConnector(DBPool pool, Form form)
          Constructor
 

Uses of Message in sky.engine.form
 

Methods in sky.engine.form that throw Message
 void HttpImageForm.execute()
           
 void HttpImageForm.drawImage(java.awt.Graphics g)
           
 void HttpForm.sendRedirect(java.lang.String url)
           
 void HttpForm.execute()
           
 void Form.validate()
           
 void Form.execute()
           
 void Form.addField(Field f)
          field manipulation functions
 void Form.popField(Field f)
           
 Field Form.getField(java.lang.String name)
           
 java.util.Hashtable Form.getFields()
           
 int Form.getFieldCount()
           
 DatabaseConnector ConsoleForm.getDatabaseConnector(java.lang.String jdbcDriver, java.lang.String jdbcUrl)
          connector functions
 EmailConnector ConsoleForm.getEmailConnector(java.lang.String host, java.lang.String sender)
           
 void BaseForm.validate()
           
 void BaseForm.execute()
           
 void BaseForm.addField(Field f)
          field manipulation functions
 void BaseForm.popField(Field f)
           
 Field BaseForm.getField(java.lang.String name)
           
 java.util.Hashtable BaseForm.getFields()
           
 int BaseForm.getFieldCount()
           
 

Constructors in sky.engine.form that throw Message
HttpImageForm(SkyContext context)
           
HttpForm(SkyContext context)
           
ConsoleForm(java.lang.String name)
           
 

Uses of Message in sky.message
 

Subclasses of Message in sky.message
 class ErrorMessage
           
 class StatusMessage
           
 class SuccessMessage