KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > quikj > client > beans > XMLFormOperator


1 /*
2  * XMLFormOperator.java
3  *
4  * Created on June 3, 2002, 9:41 AM
5  */

6
7 package com.quikj.client.beans;
8
9 /**
10  *
11  * @author Jack Martin
12  *
13  * XMLFormOperator is the class that is used on the "operator-client"
14  * to handle display of a form including user input. Submit and clear
15  * operations are not valid when the operator is viewing the form.
16  *
17  */

18 public class XMLFormOperator implements XMLFormListenerInterface {
19      
20     /** Creates a new instance of XMLFormUser */
21      public XMLFormOperator() {
22         super();
23     }
24   
25      public boolean submitSuccessful()
26      {
27        return (false);
28      }
29      
30   public void resetActionPerformed(java.awt.event.ActionEvent JavaDoc evt,
31                                     XMLArrayList awtItems)
32   {
33   }
34  
35   public void submitActionPerformed(java.awt.event.ActionEvent JavaDoc evt,
36                                     XMLArrayList awtItems,
37                                     String JavaDoc formName)
38   {
39    return;
40   }
41   
42   public String JavaDoc getMsgString()
43   {
44       return "";
45   }
46     
47   public void clearMsgString()
48   {
49   }
50   
51  
52 }
53                                  
Popular Tags