blob: b309eec0a90296852f5433f17d377f02c10a92c7 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2018 Borland Software Corporation and others.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Borland Software Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.m2m.internal.qvt.oml.emf.util.ui.choosers;
import org.eclipse.emf.ecore.resource.ResourceSet;
public class DefaultMetamodelHandler implements IMetamodelHandler {
public IResultSaver getSaver() {
return new ResourceSaver();
}
public ISourceChooser getSourceChooser(ResourceSet rs) {
return new ResourceSourceChooser(true, rs);
}
public ISourceChooser getSourceAdaptableChooser(ResourceSet rs) {
return new ResourceSourceChooser(true, rs);
}
public IDestinationChooser getSourceDestChooser(ResourceSet rs) {
return new ResourceSourceDestChooser(rs);
}
}