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 ;9 import javax.servlet.ServletException ;10 11 /**12 * Views do the work of actually rendering the model.13 */14 public interface View15 {16 /**17 * Renders the specified model to the response.18 */19 public void go(ViewContext vctx) throws ServletException , IOException ;20 }