blob: 371022806064c5d14952f64015aecac2a59a5db4 [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;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Get Control</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.rcptt.tesla.ecl.model.GetControl#getKind <em>Kind</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.rcptt.tesla.ecl.model.TeslaPackage#getGetControl()
* @model annotation="http://www.eclipse.org/ecl/docs description='Gets control with defined caption or index. If this control doesn\'t exist, then error is returned.' returns='link to the control' recorded='true' example='//writes \'Perspective id:\' into log\nget-editor WorkbanchContext | get-section Workbench | get-control -kind \"Label\" -index 1 | get-property text -raw| str | log'"
* @generated
*/
public interface GetControl extends TextSelector, PathSelector {
/**
* Returns the value of the '<em><b>Kind</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Kind</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Kind</em>' attribute.
* @see #setKind(String)
* @see org.eclipse.rcptt.tesla.ecl.model.TeslaPackage#getGetControl_Kind()
* @model required="true"
* @generated
*/
String getKind();
/**
* Sets the value of the '{@link org.eclipse.rcptt.tesla.ecl.model.GetControl#getKind <em>Kind</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Kind</em>' attribute.
* @see #getKind()
* @generated
*/
void setKind(String value);
} // GetControl