blob: 7c8e0dbfcc23347730dcedba8b2a4e585d929467 [file] [log] [blame]
/**
* Copyright (c) 2008 IBM Corporation and others.
* 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:
* IBM Corporation - initial API and implementation
*/
package org.eclipse.e4.ui.model.application;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Handler</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.e4.ui.model.application.MHandler#getCommand <em>Command</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.e4.ui.model.application.MApplicationPackage#getHandler()
* @model
* @generated
*/
public interface MHandler extends MContribution {
/**
* Returns the value of the '<em><b>Command</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Command</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Command</em>' reference.
* @see #setCommand(MCommand)
* @see org.eclipse.e4.ui.model.application.MApplicationPackage#getHandler_Command()
* @model required="true"
* @generated
*/
MCommand getCommand();
/**
* Sets the value of the '{@link org.eclipse.e4.ui.model.application.MHandler#getCommand <em>Command</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Command</em>' reference.
* @see #getCommand()
* @generated
*/
void setCommand(MCommand value);
} // MHandler