KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > infohazard > maverick > flow > View


1 /*
2  * $Id: View.java,v 1.5 2002/06/06 12:23:54 lhoriman Exp $
3  * $Source: /cvsroot/mav/maverick/src/java/org/infohazard/maverick/flow/View.java,v $
4  */

5
6 package org.infohazard.maverick.flow;
7
8 import java.io.IOException JavaDoc;
9 import javax.servlet.ServletException JavaDoc;
10
11 /**
12  * Views do the work of actually rendering the model.
13  */

14 public interface View
15 {
16     /**
17      * Renders the specified model to the response.
18      */

19     public void go(ViewContext vctx) throws ServletException JavaDoc, IOException JavaDoc;
20 }
Popular Tags