blob: b114bf344bd13f0b5f7845eb08c91b317b895195 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2019 Xored Software Inc 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
* https://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Xored Software Inc - initial API and implementation and/or initial documentation
*******************************************************************************/
package org.eclipse.rcptt.ecl.core;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.emf.ecore.EStructuralFeature;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Binding</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.rcptt.ecl.core.Binding#getFeature <em>Feature</em>}</li>
* <li>{@link org.eclipse.rcptt.ecl.core.Binding#getCommand <em>Command</em>}</li>
* </ul>
*
* @see org.eclipse.rcptt.ecl.core.CorePackage#getBinding()
* @model
* @generated
*/
public interface Binding extends EObject {
/**
* Returns the value of the '<em><b>Feature</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Feature</em>' containment reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Feature</em>' reference.
* @see #setFeature(EStructuralFeature)
* @see org.eclipse.rcptt.ecl.core.CorePackage#getBinding_Feature()
* @model
* @generated
*/
EStructuralFeature getFeature();
/**
* Sets the value of the '{@link org.eclipse.rcptt.ecl.core.Binding#getFeature <em>Feature</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Feature</em>' reference.
* @see #getFeature()
* @generated
*/
void setFeature(EStructuralFeature value);
/**
* Returns the value of the '<em><b>Command</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Command</em>' containment 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>' containment reference.
* @see #setCommand(Command)
* @see org.eclipse.rcptt.ecl.core.CorePackage#getBinding_Command()
* @model containment="true"
* @generated
*/
Command getCommand();
/**
* Sets the value of the '{@link org.eclipse.rcptt.ecl.core.Binding#getCommand <em>Command</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Command</em>' containment reference.
* @see #getCommand()
* @generated
*/
void setCommand(Command value);
} // Binding