KickJava   Java API By Example, From Geeks To Geeks.

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


1 /*
2  * XMLFormListenerInterface.java
3  *
4  * Created on May 10, 2002, 1:53 AM
5  */

6
7 package com.quikj.client.beans;
8
9 /**
10  *
11  * @author Jack Martin
12  */

13
14 public interface XMLFormListenerInterface
15 {
16     public void resetActionPerformed(java.awt.event.ActionEvent JavaDoc evt,
17     XMLArrayList items);
18     public void submitActionPerformed(java.awt.event.ActionEvent JavaDoc evt,
19     XMLArrayList items,
20     String JavaDoc s);
21     public boolean submitSuccessful();
22     public String JavaDoc getMsgString();
23     public void clearMsgString();
24 }
25
26
27
28
29
Popular Tags