package votorola.s.gwt.stage; /** A theatre initializer with handy "{@linkplain #initBegun(Stage) init begun}" and * "{@linkplain #initComplete(Stage, boolean) init complete}" methods. */ public abstract class TheatreInitializerBC extends TheatreInitializerC { /** Signals that initFrom or initTo is being called during * stage initialization. */ public abstract void initBegun( Stage s ); // - T h e a t r e - I n i t i a l i z e r -------------------------------------------- public void initFrom( Stage _s, boolean _rPending ) { initBegun( _s ); } public void initTo( Stage _s ) { initBegun( _s ); } public void initTo( Stage _s, TheatrePage _r ) { initBegun( _s ); } }