////////////////////////////////////////////////////////////////////////////
 //
 // Template
 //
 ////////////////////////////////////////////////////////////////////////////
 protected final InputStream getTemplate2(String path) {
   try {
     return Activator.getFile("templates/" + path);
   } catch (Throwable e) {
     throw ReflectionUtils.propagate(e);
   }
 }
 ////////////////////////////////////////////////////////////////////////////
 //
 // Constructor
 //
 ////////////////////////////////////////////////////////////////////////////
 public LayoutContainerWizardPage() {
   setTitle("Create Dialog");
   setImageDescriptor(Activator.getImageDescriptor("wizards/LayoutContainer/banner.png"));
   setDescription("Create empty LayoutContainer");
 }