Skip to main content
summaryrefslogtreecommitdiffstats
blob: d1ea42c497566b07c8d1452836f1ba12de9e0b3c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/**
 * Copyright (c) 2012 Mia-Software.
 *  
 * 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:
 *  	Grégoire Dupé (Mia-Software) - Bug 387470 - [EFacet][Custom] Editors
 */
package org.eclipse.emf.facet.util.ui.internal.exported.util.widget.command;

import org.eclipse.core.commands.Command;
import org.eclipse.emf.facet.util.ui.internal.exported.widget.IAbstractWidget;

/**
 * @since 0.3
 */
public interface ICommandWidget extends IAbstractWidget {

	/**
	 * Return the command for the widget specific action. The factory can be
	 * used for the creation of the {@link Command}.
	 * 
	 * @see IFacetCommandFactory
	 * 
	 * @return the command.
	 */
	Object getCommand();

	/**
	 * This method is execute when the "OK" button of the {@link #parent} is
	 * pressed.
	 */
	void onDialogValidation();
	
	<A> A adapt(Class<A> adapterType);

}

Back to the top