blob: e44390a988d54bea4941d2282c75c0d7e7e283fe [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2019 Mia-Software 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:
* Nicolas Bros (Mia-Software) - initial API and implementation
* Nicolas Guyomar (Mia-Software) - Bug 349546 - EMF Facet facetSet editor
*******************************************************************************/
package org.eclipse.modisco.facet.efacet.ui.internal.widget;
import java.util.Map;
import java.util.Set;
import java.util.TreeSet;
import org.eclipse.emf.ecore.EPackage;
import org.eclipse.modisco.facet.efacet.ui.internal.composites.FilteredElementSelectionComposite;
import org.eclipse.swt.widgets.Composite;
/**
* A control to select a metamodel from a list of metamodels, that can be filtered using the
* associated text field.
*/
public class MetamodelSelectionControl extends FilteredElementSelectionComposite {
public MetamodelSelectionControl(final Composite parent) {
super(parent, true, false);
final Set<String> uris = new TreeSet<String>();
for (final Object name : ((Map<?, ?>) EPackage.Registry.INSTANCE).keySet()) {
uris.add((name).toString());
}
setElements(uris.toArray());
}
}