blob: eb2a13d57d9952b6aaee09546fb60cd745fec2db [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.tesla.ecl.model;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Activate Cell Edit</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.rcptt.tesla.ecl.model.ActivateCellEdit#getColumn <em>Column</em>}</li>
* <li>{@link org.eclipse.rcptt.tesla.ecl.model.ActivateCellEdit#getType <em>Type</em>}</li>
* <li>{@link org.eclipse.rcptt.tesla.ecl.model.ActivateCellEdit#getButton <em>Button</em>}</li>
* </ul>
*
* @see org.eclipse.rcptt.tesla.ecl.model.TeslaPackage#getActivateCellEdit()
* @model annotation="http://www.eclipse.org/ecl/docs description='Activates cell editing.' returns='value of &lt;code&gt;control&lt;/code&gt; parameter' example='get-editor Test | get-section Preferences | get-tree | select \"EXECUTION_TIMEOUT\" | activate-cell-edit -column 1'"
* @generated
*/
public interface ActivateCellEdit extends CellEdit {
/**
* Returns the value of the '<em><b>Column</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Column</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Column</em>' attribute.
* @see #setColumn(int)
* @see org.eclipse.rcptt.tesla.ecl.model.TeslaPackage#getActivateCellEdit_Column()
* @model required="true"
* annotation="http://www.eclipse.org/ecl/docs description=''"
* @generated
*/
int getColumn();
/**
* Sets the value of the '{@link org.eclipse.rcptt.tesla.ecl.model.ActivateCellEdit#getColumn <em>Column</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Column</em>' attribute.
* @see #getColumn()
* @generated
*/
void setColumn(int value);
/**
* Returns the value of the '<em><b>Type</b></em>' attribute.
* The literals are from the enumeration {@link org.eclipse.rcptt.tesla.ecl.model.ActivationEventType}.
* <!-- 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 org.eclipse.rcptt.tesla.ecl.model.ActivationEventType
* @see #setType(ActivationEventType)
* @see org.eclipse.rcptt.tesla.ecl.model.TeslaPackage#getActivateCellEdit_Type()
* @model annotation="http://www.eclipse.org/ecl/docs description=''"
* @generated
*/
ActivationEventType getType();
/**
* Sets the value of the '{@link org.eclipse.rcptt.tesla.ecl.model.ActivateCellEdit#getType <em>Type</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Type</em>' attribute.
* @see org.eclipse.rcptt.tesla.ecl.model.ActivationEventType
* @see #getType()
* @generated
*/
void setType(ActivationEventType value);
/**
* Returns the value of the '<em><b>Button</b></em>' attribute.
* The default value is <code>"1"</code>.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Button</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Button</em>' attribute.
* @see #setButton(int)
* @see org.eclipse.rcptt.tesla.ecl.model.TeslaPackage#getActivateCellEdit_Button()
* @model default="1"
* annotation="http://www.eclipse.org/ecl/docs description=''"
* @generated
*/
int getButton();
/**
* Sets the value of the '{@link org.eclipse.rcptt.tesla.ecl.model.ActivateCellEdit#getButton <em>Button</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Button</em>' attribute.
* @see #getButton()
* @generated
*/
void setButton(int value);
} // ActivateCellEdit