01: /*
02: * Created on Jul 27, 2005
03: */
04: package uk.org.ponder.rsf.view;
05:
06: /**
07: * A marker interface for view templates. Any common functionality is
08: * in BasedViewTemplate, or else in concrete XMLViewTemplate.
09: * @author Antranig Basman (antranig@caret.cam.ac.uk)
10: *
11: */
12: public interface ViewTemplate extends ComponentChecker {
13:
14: }
|