01: /*
02: * Created on 26 Mar 2007
03: */
04: package uk.org.ponder.rsf.templateresolver;
05:
06: /** A TemplateResolverStrategy that forces contribution of its collecting matter,
07: * whether it is referenced or not.
08: *
09: * @author Antranig Basman (antranig@caret.cam.ac.uk)
10: */
11:
12: public interface ForceContributingTRS {
13: public void setMustContribute(boolean mustcontribute);
14:
15: public boolean getMustContribute();
16: }
|