01: /*
02: * Created on Aug 13, 2004 by mgreer
03: */
04: package com.opensymphony.webwork.sitegraph.entities;
05:
06: import java.util.Set;
07:
08: /**
09: * 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 The name of the view file.
20: */
21: public String getName();
22:
23: /**
24: * Returns Set of Commands linked to by this view
25: *
26: * @return a set of Targets
27: */
28: public Set getTargets();
29: }
|