blob: 5ac51f8058091b84c875f1a3a8a9f26a6e6e8c13 [file] [log] [blame]
/**
* Copyright (c) 2011, 2015 - Lunifera GmbH (Gross Enzersdorf, Austria), Loetz GmbH&Co.KG (69115 Heidelberg, Germany)
* 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:
* Florian Pirchner - Initial implementation
*/
package org.eclipse.osbp.ecview.semantic.uimodel;
import org.eclipse.xtext.common.types.JvmOperation;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Ui List</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.osbp.ecview.semantic.uimodel.UiList#getSelectionType <em>Selection Type</em>}</li>
* <li>{@link org.eclipse.osbp.ecview.semantic.uimodel.UiList#getItemImageProperty <em>Item Image Property</em>}</li>
* <li>{@link org.eclipse.osbp.ecview.semantic.uimodel.UiList#getItemCaptionProperty <em>Item Caption Property</em>}</li>
* <li>{@link org.eclipse.osbp.ecview.semantic.uimodel.UiList#getDescriptionProperty <em>Description Property</em>}</li>
* </ul>
*
* @see org.eclipse.osbp.ecview.semantic.uimodel.UiModelPackage#getUiList()
* @model
* @generated
*/
public interface UiList extends UiField, UiTypeProvider, UiBeanServiceConsumer {
/**
* Returns the value of the '<em><b>Selection Type</b></em>' attribute.
* The default value is <code>"SINGLE"</code>.
* The literals are from the enumeration {@link org.eclipse.osbp.ecview.semantic.uimodel.UiSelectionType}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Selection Type</em>' attribute isn't clear,
* there really should be more of a description here...
*
* <!-- end-user-doc -->
* @return the value of the '<em>Selection Type</em>' attribute.
* @see org.eclipse.osbp.ecview.semantic.uimodel.UiSelectionType
* @see #setSelectionType(UiSelectionType)
* @see org.eclipse.osbp.ecview.semantic.uimodel.UiModelPackage#getUiList_SelectionType()
* @model default="SINGLE" required="true"
* @generated
*/
UiSelectionType getSelectionType();
/**
* Sets the value of the '{@link org.eclipse.osbp.ecview.semantic.uimodel.UiList#getSelectionType <em>Selection Type</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Selection Type</em>' attribute.
* @see org.eclipse.osbp.ecview.semantic.uimodel.UiSelectionType
* @see #getSelectionType()
* @generated
*/
void setSelectionType(UiSelectionType value);
/**
* Returns the value of the '<em><b>Item Image Property</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Item Image Property</em>' reference isn't clear,
* there really should be more of a description here...
*
* <!-- end-user-doc -->
* @return the value of the '<em>Item Image Property</em>' reference.
* @see #setItemImageProperty(JvmOperation)
* @see org.eclipse.osbp.ecview.semantic.uimodel.UiModelPackage#getUiList_ItemImageProperty()
* @model
* @generated
*/
JvmOperation getItemImageProperty();
/**
* Sets the value of the '{@link org.eclipse.osbp.ecview.semantic.uimodel.UiList#getItemImageProperty <em>Item Image Property</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Item Image Property</em>' reference.
* @see #getItemImageProperty()
* @generated
*/
void setItemImageProperty(JvmOperation value);
/**
* Returns the value of the '<em><b>Item Caption Property</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Item Caption Property</em>' reference isn't clear,
* there really should be more of a description here...
*
* <!-- end-user-doc -->
* @return the value of the '<em>Item Caption Property</em>' reference.
* @see #setItemCaptionProperty(JvmOperation)
* @see org.eclipse.osbp.ecview.semantic.uimodel.UiModelPackage#getUiList_ItemCaptionProperty()
* @model
* @generated
*/
JvmOperation getItemCaptionProperty();
/**
* Sets the value of the '{@link org.eclipse.osbp.ecview.semantic.uimodel.UiList#getItemCaptionProperty <em>Item Caption Property</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Item Caption Property</em>' reference.
* @see #getItemCaptionProperty()
* @generated
*/
void setItemCaptionProperty(JvmOperation value);
/**
* Returns the value of the '<em><b>Description Property</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Description Property</em>' containment reference isn't clear,
* there really should be more of a description here...
*
* <!-- end-user-doc -->
* @return the value of the '<em>Description Property</em>' containment reference.
* @see #setDescriptionProperty(UiNestedProperty)
* @see org.eclipse.osbp.ecview.semantic.uimodel.UiModelPackage#getUiList_DescriptionProperty()
* @model containment="true" resolveProxies="true"
* @generated
*/
UiNestedProperty getDescriptionProperty();
/**
* Sets the value of the '{@link org.eclipse.osbp.ecview.semantic.uimodel.UiList#getDescriptionProperty <em>Description Property</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Description Property</em>' containment reference.
* @see #getDescriptionProperty()
* @generated
*/
void setDescriptionProperty(UiNestedProperty value);
} // UiList