01: /*
02: * Created on 13 Sep 2006
03: */
04: package uk.org.ponder.rsf.view;
05:
06: import java.io.InputStream;
07:
08: /**
09: * Parses an RSF (IKAT) view template from a stream representation. Currently
10: * the only concrete implementation is
11: * {@link uk.org.ponder.rsf.template.XMLViewTemplateParser}, producing
12: * {@link uk.org.ponder.rsf.template.XMLViewTemplate} objects.
13: */
14:
15: public interface ViewTemplateParser {
16: ViewTemplate parse(InputStream is);
17: }
|