blob: dbdd455f9c58ae418aa838681515b8f6d3508eae [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010 BSI Business Systems Integration AG.
* 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:
* BSI Business Systems Integration AG - initial API and implementation
******************************************************************************/
package org.eclipse.scout.rt.ui.rap.window.filechooser;
import org.eclipse.scout.rt.client.ui.basic.filechooser.IFileChooser;
import org.eclipse.scout.rt.ui.rap.dnd.IRwtScoutFileUploadHandler;
import org.eclipse.scout.rt.ui.rap.dnd.RwtScoutFileUploadHandler;
import org.eclipse.scout.rt.ui.rap.form.fields.IRwtScoutDndUploadCallback;
import org.eclipse.scout.service.AbstractService;
import org.eclipse.swt.widgets.Shell;
public class RwtScoutFileChooserService extends AbstractService implements IRwtScoutFileChooserService {
@Override
public IRwtScoutFileChooser createFileChooser(Shell parentShell, IFileChooser fileChooser) {
IRwtScoutFileChooser sfc = new RwtScoutFileChooser(parentShell, fileChooser);
return sfc;
}
@Override
public IRwtScoutFileUploadHandler createFileUploadHandler(IRwtScoutDndUploadCallback uploadCallback) {
return new RwtScoutFileUploadHandler(uploadCallback);
}
}