Added configure method to IExampleContribution to allow contributions to initialize
diff --git a/bundles/org.eclipse.rap.rwt.supplemental.filedialog.demo/src/org/eclipse/rap/examples/demo/fileupload/FileUploadExampleContribution.java b/bundles/org.eclipse.rap.rwt.supplemental.filedialog.demo/src/org/eclipse/rap/examples/demo/fileupload/FileUploadExampleContribution.java
index 77d2e30..36498f8 100644
--- a/bundles/org.eclipse.rap.rwt.supplemental.filedialog.demo/src/org/eclipse/rap/examples/demo/fileupload/FileUploadExampleContribution.java
+++ b/bundles/org.eclipse.rap.rwt.supplemental.filedialog.demo/src/org/eclipse/rap/examples/demo/fileupload/FileUploadExampleContribution.java
@@ -12,6 +12,7 @@
 
 import org.eclipse.rap.examples.IExampleContribution;
 import org.eclipse.rap.examples.IExamplePage;
+import org.eclipse.rwt.application.ApplicationConfiguration;
 
 
 final class FileUploadExampleContribution implements IExampleContribution {
@@ -24,15 +25,10 @@
     return "File Upload";
   }
 
-  public String getCategoryId() {
-    return null;
-  }
-
-  public String getCategoryName() {
-    return null;
-  }
-
   public IExamplePage createPage() {
     return new FileUploadExamplePage();
   }
+
+  public void configure( ApplicationConfiguration configuration ) {
+  }
 }