001package votorola.s.gwt.stage;
002
003
004/** A theatre initializer with handy "{@linkplain #initBegun(Stage) init begun}" and
005  * "{@linkplain #initComplete(Stage, boolean) init complete}" methods.
006  */
007public abstract class TheatreInitializerBC extends TheatreInitializerC
008{
009
010
011    /** Signals that <code>initFrom</code> or <code>initTo</code> is being called during
012      * stage initialization.
013      */
014    public abstract void initBegun( Stage s );
015
016
017
018   // - T h e a t r e - I n i t i a l i z e r --------------------------------------------
019
020
021    public void initFrom( Stage _s, boolean _rPending ) { initBegun( _s ); }
022
023
024
025    public void initTo( Stage _s ) {  initBegun( _s ); }
026
027
028
029    public void initTo( Stage _s, TheatrePage _r ) { initBegun( _s ); }
030
031
032}