com.hdcookbook.grin.io.builders
Interface DeferredBuilder

All Known Implementing Classes:
TranslatorHelper

public interface DeferredBuilder

A superclass for helper classes for creating a Show that need to be called when the show is complete. This can be the case, for example, for a feature that needs to look things up in other features that might occur later in a text or XML source file.

A deferred builder is called after the show has been initialized, so no structural changes to the show can be made in a deferred builder.


Method Summary
 void finishBuilding(SEShow show)
          Finish the building process.
 

Method Detail

finishBuilding

void finishBuilding(SEShow show)
                    throws java.io.IOException
Finish the building process.

Throws:
java.io.IOException
See Also:
ShowBuilder.finishBuilding()