blob: 69d817ef47cbc86f4adc648105cc73937dfe7c6c [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 v2.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.common.util.EList;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Command</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.rcptt.ecl.core.Command#getHost <em>Host</em>}</li>
* <li>{@link org.eclipse.rcptt.ecl.core.Command#getBindings <em>Bindings</em>}</li>
* </ul>
*
* @see org.eclipse.rcptt.ecl.core.CorePackage#getCommand()
* @model
* @generated
*/
public interface Command extends EObject {
/**
* Returns the value of the '<em><b>Host</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Host</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Host</em>' attribute.
* @see #setHost(String)
* @see org.eclipse.rcptt.ecl.core.CorePackage#getCommand_Host()
* @model annotation="http://www.eclipse.org/ecl/internal"
* @generated
*/
String getHost();
/**
* Sets the value of the '{@link org.eclipse.rcptt.ecl.core.Command#getHost <em>Host</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Host</em>' attribute.
* @see #getHost()
* @generated
*/
void setHost(String value);
/**
* Returns the value of the '<em><b>Bindings</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.rcptt.ecl.core.Binding}.
* <!-- 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.rcptt.ecl.core.CorePackage#getCommand_Bindings()
* @model containment="true"
* annotation="http://www.eclipse.org/ecl/internal"
* @generated
*/
EList<Binding> getBindings();
} // Command