blob: 1f6329b869a03a20e83b89c04306c58820aa1c49 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016, 2018 Willink Transformations 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:
* E.D.Willink - initial API and implementation
*******************************************************************************/
package org.eclipse.qvtd.examples.qvtc.wizards;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import org.eclipse.qvtd.examples.wizards.AbstractExampleWizard;
public class UML2RDBMSExampleWizard extends AbstractExampleWizard
{
@Override
protected Collection<ProjectDescriptor> getProjectDescriptors() {
List<ProjectDescriptor> projects = new ArrayList<ProjectDescriptor>(4);
projects.add(new ProjectDescriptor("org.eclipse.qvtd.examples", "zips/qvtc/uml2rdbms.zip", "org.eclipse.qvtd.examples.qvtcore.uml2rdbms")); //$NON-NLS-1$//$NON-NLS-2$ //$NON-NLS-3$
return projects;
}
}