blob: e7f7998ed4723fbf8b0745a49d7e7e3b78e979f2 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2014 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
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Xored Software Inc - initial API and implementation and/or initial documentation
*******************************************************************************/
package org.eclipse.rcptt.tesla.ecl.model;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.rcptt.ecl.core.Command;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Get Object</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.rcptt.tesla.ecl.model.GetObject#getObject <em>Object</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.rcptt.tesla.ecl.model.TeslaPackage#getGetObject()
* @model annotation="http://www.eclipse.org/ecl/docs description='Gets interop object from UI control.' returns='Interop object.' example='get-view \"Package Explorer\" | get-tree | get-object | my-custom-tree-command'"
* @generated
*/
public interface GetObject extends Command {
/**
* Returns the value of the '<em><b>Object</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Object</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Object</em>' reference.
* @see #setObject(EObject)
* @see org.eclipse.rcptt.tesla.ecl.model.TeslaPackage#getGetObject_Object()
* @model required="true"
* annotation="http://www.eclipse.org/ecl/docs description='UI control to get object for.'"
* @generated
*/
EObject getObject();
/**
* Sets the value of the '{@link org.eclipse.rcptt.tesla.ecl.model.GetObject#getObject <em>Object</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Object</em>' reference.
* @see #getObject()
* @generated
*/
void setObject(EObject value);
} // GetObject