blob: d385e9e77ce001b0958e21bea9aabb3b45377841 [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.tesla.ecl.model;
import org.eclipse.rcptt.ecl.core.Command;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Selector</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.rcptt.tesla.ecl.model.Selector#getId <em>Id</em>}</li>
* <li>{@link org.eclipse.rcptt.tesla.ecl.model.Selector#getAfter <em>After</em>}</li>
* <li>{@link org.eclipse.rcptt.tesla.ecl.model.Selector#getType <em>Type</em>}</li>
* <li>{@link org.eclipse.rcptt.tesla.ecl.model.Selector#getIndex <em>Index</em>}</li>
* <li>{@link org.eclipse.rcptt.tesla.ecl.model.Selector#getParent <em>Parent</em>}</li>
* </ul>
*
* @see org.eclipse.rcptt.tesla.ecl.model.TeslaPackage#getSelector()
* @model interface="true" abstract="true"
* @generated
*/
public interface Selector extends Command {
/**
* Returns the value of the '<em><b>Id</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>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>Id</em>' attribute.
* @see #setId(String)
* @see org.eclipse.rcptt.tesla.ecl.model.TeslaPackage#getSelector_Id()
* @model annotation="http://www.eclipse.org/ecl/internal"
* @generated
*/
String getId();
/**
* Sets the value of the '{@link org.eclipse.rcptt.tesla.ecl.model.Selector#getId <em>Id</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Id</em>' attribute.
* @see #getId()
* @generated
*/
void setId(String value);
/**
* Returns the value of the '<em><b>After</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>After</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>After</em>' reference.
* @see #setAfter(ControlHandler)
* @see org.eclipse.rcptt.tesla.ecl.model.TeslaPackage#getSelector_After()
* @model annotation="http://www.eclipse.org/ecl/docs description='Indicates the element after which the necessary element is present. '"
* @generated
*/
ControlHandler getAfter();
/**
* Sets the value of the '{@link org.eclipse.rcptt.tesla.ecl.model.Selector#getAfter <em>After</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>After</em>' reference.
* @see #getAfter()
* @generated
*/
void setAfter(ControlHandler value);
/**
* Returns the value of the '<em><b>Index</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Index</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Index</em>' attribute.
* @see #setIndex(Integer)
* @see org.eclipse.rcptt.tesla.ecl.model.TeslaPackage#getSelector_Index()
* @model annotation="http://www.eclipse.org/ecl/docs description='Indicates the number of control in list. If element is first in list, then this parameter is not present and default is equal 0.'"
* @generated
*/
Integer getIndex();
/**
* Sets the value of the '{@link org.eclipse.rcptt.tesla.ecl.model.Selector#getIndex <em>Index</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Index</em>' attribute.
* @see #getIndex()
* @generated
*/
void setIndex(Integer value);
/**
* Returns the value of the '<em><b>Parent</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Parent</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Parent</em>' reference.
* @see #setParent(ControlHandler)
* @see org.eclipse.rcptt.tesla.ecl.model.TeslaPackage#getSelector_Parent()
* @model annotation="http://www.eclipse.org/ecl/input"
* annotation="http://www.eclipse.org/ecl/docs description=''"
* @generated
*/
ControlHandler getParent();
/**
* Sets the value of the '{@link org.eclipse.rcptt.tesla.ecl.model.Selector#getParent <em>Parent</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Parent</em>' reference.
* @see #getParent()
* @generated
*/
void setParent(ControlHandler value);
/**
* Returns the value of the '<em><b>Type</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Type</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Type</em>' attribute.
* @see #setType(String)
* @see org.eclipse.rcptt.tesla.ecl.model.TeslaPackage#getSelector_Type()
* @model annotation="http://www.eclipse.org/ecl/docs description='Indicates the type of a control, if there are any types.'"
* @generated
*/
String getType();
/**
* Sets the value of the '{@link org.eclipse.rcptt.tesla.ecl.model.Selector#getType <em>Type</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Type</em>' attribute.
* @see #getType()
* @generated
*/
void setType(String value);
} // Selector