KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > opensymphony > webwork > webFlow > entities > View


1 /*
2  * Created on Aug 13, 2004 by mgreer
3  */

4 package com.opensymphony.webwork.webFlow.entities;
5
6 import java.util.Set JavaDoc;
7
8 /**
9  * TODO Describe View
10  */

11 public interface View {
12     public static final int TYPE_JSP = 0;
13     public static final int TYPE_VM = 1;
14     public static final int TYPE_FTL = 2;
15
16     /**
17      * Name of view file
18      *
19      * @return
20      */

21     public String JavaDoc getName();
22
23     /**
24      * Returns Set of Commands linked to by this view
25      *
26      * @return a set of Targets
27      */

28     public Set JavaDoc getTargets();
29 }
Popular Tags