blob: 14505d8b1b6c91e23a5c9e52bc851cd6db537b90 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2015 Soft-Maint.
* 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:
* Jonathan Pepin (Soft-Maint) - Bug 463907 - Command for load and save Facet serialization
*******************************************************************************/
package org.eclipse.modisco.facet.efacet.ui.internal.exported.widget;
import org.eclipse.modisco.facet.efacet.ui.internal.widget.UriWidgetFactory;
import org.eclipse.swt.widgets.Composite;
/*
* @since 1.0
*/
public interface IUriWidgetFactory {
IUriWidgetFactory DEFAULT = new UriWidgetFactory();
IUriWidget createUriWidget(Composite parent);
}