blob: 51594b8b18fbf8c686a03368edd8fe198538a437 [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.core.ui;
import org.eclipse.emf.common.util.EList;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Combo</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.rcptt.tesla.core.ui.Combo#getTooltip <em>Tooltip</em>}</li>
* <li>{@link org.eclipse.rcptt.tesla.core.ui.Combo#getSelection <em>Selection</em>}</li>
* <li>{@link org.eclipse.rcptt.tesla.core.ui.Combo#isReadOnly <em>Read Only</em>}</li>
* <li>{@link org.eclipse.rcptt.tesla.core.ui.Combo#getValues <em>Values</em>}</li>
* </ul>
*
* @see org.eclipse.rcptt.tesla.core.ui.UiPackage#getCombo()
* @model
* @generated
*/
public interface Combo extends Control {
/**
* Returns the value of the '<em><b>Tooltip</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Tooltip</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Tooltip</em>' attribute.
* @see #setTooltip(String)
* @see org.eclipse.rcptt.tesla.core.ui.UiPackage#getCombo_Tooltip()
* @model
* @generated
*/
String getTooltip();
/**
* Sets the value of the '{@link org.eclipse.rcptt.tesla.core.ui.Combo#getTooltip <em>Tooltip</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Tooltip</em>' attribute.
* @see #getTooltip()
* @generated
*/
void setTooltip(String value);
/**
* Returns the value of the '<em><b>Selection</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Selection</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Selection</em>' attribute.
* @see #setSelection(String)
* @see org.eclipse.rcptt.tesla.core.ui.UiPackage#getCombo_Selection()
* @model
* @generated
*/
String getSelection();
/**
* Sets the value of the '{@link org.eclipse.rcptt.tesla.core.ui.Combo#getSelection <em>Selection</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Selection</em>' attribute.
* @see #getSelection()
* @generated
*/
void setSelection(String value);
/**
* Returns the value of the '<em><b>Read Only</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Read Only</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Read Only</em>' attribute.
* @see #setReadOnly(boolean)
* @see org.eclipse.rcptt.tesla.core.ui.UiPackage#getCombo_ReadOnly()
* @model
* @generated
*/
boolean isReadOnly();
/**
* Sets the value of the '{@link org.eclipse.rcptt.tesla.core.ui.Combo#isReadOnly <em>Read Only</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Read Only</em>' attribute.
* @see #isReadOnly()
* @generated
*/
void setReadOnly(boolean value);
/**
* Returns the value of the '<em><b>Values</b></em>' attribute list.
* The list contents are of type {@link java.lang.String}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Values</em>' attribute list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Values</em>' attribute list.
* @see org.eclipse.rcptt.tesla.core.ui.UiPackage#getCombo_Values()
* @model unique="false"
* @generated
*/
EList<String> getValues();
} // Combo