blob: 238b092e9e6091a8ac25ece61130d3eb22facc3e [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;
import org.eclipse.emf.common.util.EList;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Binding Table</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.e4.ui.model.application.MBindingTable#getBindingContextId <em>Binding Context Id</em>}</li>
* <li>{@link org.eclipse.e4.ui.model.application.MBindingTable#getBindings <em>Bindings</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.e4.ui.model.application.MApplicationPackage#getBindingTable()
* @model
* @generated
*/
public interface MBindingTable extends MApplicationElement {
/**
* Returns the value of the '<em><b>Binding Context Id</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Binding Context Id</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Binding Context Id</em>' attribute.
* @see #setBindingContextId(String)
* @see org.eclipse.e4.ui.model.application.MApplicationPackage#getBindingTable_BindingContextId()
* @model required="true"
* @generated
*/
String getBindingContextId();
/**
* Sets the value of the '{@link org.eclipse.e4.ui.model.application.MBindingTable#getBindingContextId <em>Binding Context Id</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Binding Context Id</em>' attribute.
* @see #getBindingContextId()
* @generated
*/
void setBindingContextId(String value);
/**
* Returns the value of the '<em><b>Bindings</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.e4.ui.model.application.MKeyBinding}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Bindings</em>' containment reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Bindings</em>' containment reference list.
* @see org.eclipse.e4.ui.model.application.MApplicationPackage#getBindingTable_Bindings()
* @model containment="true"
* @generated
*/
EList<MKeyBinding> getBindings();
} // MBindingTable