01: /*
02: * Created on Dec 3, 2005
03: */
04: package uk.org.ponder.rsf.view;
05:
06: /** This interface is used to break load-order race between ComponentProcessors
07: * and RenderHandlerImpl.
08: * @author Antranig Basman (antranig@caret.cam.ac.uk)
09: *
10: */
11: public interface ViewReceiver {
12: public void setView(View view);
13: }
|