blob: 36498f85e4a771d92d9de223dd4c890773d360f0 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011, 2012 EclipseSource and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* EclipseSource - initial API and implementation
******************************************************************************/
package org.eclipse.rap.examples.demo.fileupload;
import org.eclipse.rap.examples.IExampleContribution;
import org.eclipse.rap.examples.IExamplePage;
import org.eclipse.rwt.application.ApplicationConfiguration;
final class FileUploadExampleContribution implements IExampleContribution {
public String getId() {
return "file-upload";
}
public String getTitle() {
return "File Upload";
}
public IExamplePage createPage() {
return new FileUploadExamplePage();
}
public void configure( ApplicationConfiguration configuration ) {
}
}