blob: deea1fcc4acd2a22f5a71bd3de23e962fc084e6d [file] [log] [blame]
/**
* Copyright (c) 2012, 2019 Mia-Software.
*
* 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:
* Grégoire Dupé (Mia-Software) - Bug 387470 - [EFacet][Custom] Editors
*/
package org.eclipse.modisco.facet.util.ui.internal.exported.util.widget.command;
import org.eclipse.modisco.facet.util.ui.internal.exported.dialog.IDialog;
/**
* @since 0.3
*/
public interface IGetOrCreateFilteredElementCommmandWidget<T extends Object, W extends Object>
extends ICommandWidget {
/**
* @return the selected element in the filtredList.
*/
T getElementSelected();
void selectElement(T element);
void selectElementByName(String name);
IDialog<W> pressNewButton();
}