FileDocCategorySizeDatePackage
View.javaAPI DocExample404Tue Jun 08 11:26:42 BST 2004com.mycompany.jsf.pl

View.java

package com.mycompany.jsf.pl;

import javax.faces.component.UIViewRoot;
import javax.faces.context.FacesContext;

/**
 * This interface must be implemented by classes representing a
 * view for the ClassViewHandler.
 *
 * @author Hans Bergsten, Gefion Software <hans@gefionsoftware.com>
 * @version 1.0
 */
public interface View {
    public UIViewRoot createView(FacesContext context);
}