KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tonbeller > wcf > wizard > PageListener


1 package com.tonbeller.wcf.wizard;
2
3 import com.tonbeller.wcf.controller.RequestContext;
4
5 /**
6  * a WizardPage tells its wizard that its finished by calling one of these methods.
7  *
8  * @author av
9  */

10 public interface PageListener {
11   void onNext(RequestContext context) throws Exception JavaDoc;
12   void onBack(RequestContext context) throws Exception JavaDoc;
13   void onFinish(RequestContext context) throws Exception JavaDoc;
14   void onCancel(RequestContext context) throws Exception JavaDoc;
15 }
16
Popular Tags