blob: b09c9d7f05f42f730856adae645a9054dc625ec0 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2014 EclipseSource Muenchen GmbH 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:
* Johannes Faltermeier - initial API and implementation
******************************************************************************/
package org.eclipse.emf.emfstore.internal.client.ui.util;
import java.io.File;
import org.eclipse.swt.SWT;
import org.eclipse.swt.widgets.FileDialog;
import org.eclipse.swt.widgets.Shell;
/**
* {@link EMFStoreFileDialogHelper} using the RWT implementation of the {@link FileDialog}.
*
* @author jfaltermeier
*
*/
public class EMFStoreFileDialogHelperImpl implements EMFStoreFileDialogHelper {
private static final String IMPORT_MODEL_PATH = "org.eclipse.emf.emfstore.client.ui.importModelPath"; //$NON-NLS-1$
/**
*
* {@inheritDoc}
*
* @see org.eclipse.emf.emfstore.internal.client.ui.util.EMFStoreFileDialogHelper#getPathForImport(org.eclipse.swt.widgets.Shell)
*/
public String getPathForImport(Shell shell) {
final FileDialog dialog = new FileDialog(shell, SWT.OPEN);
final String fileName = dialog.open();
if (fileName == null) {
return null;
}
final File file = new File(fileName);
EMFStorePreferenceHelper.setPreference(IMPORT_MODEL_PATH, file.getParent());
return file.getAbsolutePath();
}
/**
*
* {@inheritDoc}
*
* @see org.eclipse.emf.emfstore.internal.client.ui.util.EMFStoreFileDialogHelper#getPathForExport(org.eclipse.swt.widgets.Shell,
* java.lang.String)
*/
public String getPathForExport(Shell shell, String fileName) {
final FileDialog dialog = new FileDialog(shell, SWT.SAVE);
final String filePath = dialog.open();
return filePath;
}
}