blob: 4cbf7252efed3bf00a7200eb8be8fb2790a848c9 [file] [log] [blame]
/**
* Copyright (c) 2011, 2016 - 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
*
* Based on ideas from Xtext, Xtend, Xcore
*
* Contributors{
* Christophe Loetz (Loetz GmbH&Co.KG) - Initial implementation
*
*/
package org.eclipse.osbp.xtext.table;
import org.eclipse.emf.common.util.EList;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Table Event</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.osbp.xtext.table.TableEvent#getSource <em>Source</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.table.TableEvent#getBrokerDatamarts <em>Broker Datamarts</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.osbp.xtext.table.TableDSLPackage#getTableEvent()
* @model
* @generated
*/
public interface TableEvent extends TableLazyResolver {
/**
* Returns the value of the '<em><b>Source</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Source</em>' containment reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Source</em>' containment reference.
* @see #setSource(TableValueElement)
* @see org.eclipse.osbp.xtext.table.TableDSLPackage#getTableEvent_Source()
* @model containment="true"
* @generated
*/
TableValueElement getSource();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.table.TableEvent#getSource <em>Source</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Source</em>' containment reference.
* @see #getSource()
* @generated
*/
void setSource(TableValueElement value);
/**
* Returns the value of the '<em><b>Broker Datamarts</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.osbp.xtext.table.TableBrokerDatamart}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Broker Datamarts</em>' containment reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Broker Datamarts</em>' containment reference list.
* @see org.eclipse.osbp.xtext.table.TableDSLPackage#getTableEvent_BrokerDatamarts()
* @model containment="true"
* @generated
*/
EList<TableBrokerDatamart> getBrokerDatamarts();
} // TableEvent