blob: 565c5a02d90d748afff95fb792c7857f020cc408 [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
*
* $Id: Handler.java,v 1.1 2008/11/11 18:19:12 bbokowski Exp $
*/
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.Handler#getCommand <em>Command</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.e4.ui.model.application.ApplicationPackage#getHandler()
* @model
* @generated
*/
public interface Handler extends Contribution {
/**
* 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(Command)
* @see org.eclipse.e4.ui.model.application.ApplicationPackage#getHandler_Command()
* @model required="true"
* @generated
*/
Command getCommand();
/**
* Sets the value of the '{@link org.eclipse.e4.ui.model.application.Handler#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(Command value);
} // Handler