blob: b211bf80b348cbb27d3014f26cefa08640c62784 [file] [log] [blame]
/**
* Copyright (c) 2011, 2016 - Lunifera GmbH (Gross Enzersdorf), Loetz GmbH&Co.KG (Heidelberg)
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Based on ideas from Xtext, Xtend, Xcore
*
* Contributors:
* Florian Pirchner - Initial implementation
*
*/
package org.eclipse.osbp.dsl.semantic.entity;
import org.eclipse.osbp.dsl.semantic.common.types.LReference;
import org.eclipse.osbp.dsl.semantic.common.types.LResultFilters;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>LEntity Reference</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.osbp.dsl.semantic.entity.LEntityReference#getType <em>Type</em>}</li>
* <li>{@link org.eclipse.osbp.dsl.semantic.entity.LEntityReference#getOpposite <em>Opposite</em>}</li>
* <li>{@link org.eclipse.osbp.dsl.semantic.entity.LEntityReference#getResultFilters <em>Result Filters</em>}</li>
* <li>{@link org.eclipse.osbp.dsl.semantic.entity.LEntityReference#getFilterDepth <em>Filter Depth</em>}</li>
* </ul>
*
* @see org.eclipse.osbp.dsl.semantic.entity.OSBPEntityPackage#getLEntityReference()
* @generated
*/
public interface LEntityReference extends LEntityFeature, LReference {
/**
* Returns the value of the '<em><b>Type</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Type</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Type</em>' reference.
* @see #setType(LEntity)
* @see org.eclipse.osbp.dsl.semantic.entity.OSBPEntityPackage#getLEntityReference_Type()
* @generated
*/
LEntity getType();
/**
* Sets the value of the '{@link org.eclipse.osbp.dsl.semantic.entity.LEntityReference#getType <em>Type</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Type</em>' reference.
* @see #getType()
* @generated
*/
void setType(LEntity value);
/**
* Returns the value of the '<em><b>Opposite</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Opposite</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Opposite</em>' reference.
* @see #setOpposite(LEntityReference)
* @see org.eclipse.osbp.dsl.semantic.entity.OSBPEntityPackage#getLEntityReference_Opposite()
* @generated
*/
LEntityReference getOpposite();
/**
* Sets the value of the '{@link org.eclipse.osbp.dsl.semantic.entity.LEntityReference#getOpposite <em>Opposite</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Opposite</em>' reference.
* @see #getOpposite()
* @generated
*/
void setOpposite(LEntityReference value);
/**
* Returns the value of the '<em><b>Result Filters</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Result Filters</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>Result Filters</em>' containment reference.
* @see #setResultFilters(LResultFilters)
* @see org.eclipse.osbp.dsl.semantic.entity.OSBPEntityPackage#getLEntityReference_ResultFilters()
* @generated
*/
LResultFilters getResultFilters();
/**
* Sets the value of the '{@link org.eclipse.osbp.dsl.semantic.entity.LEntityReference#getResultFilters <em>Result Filters</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Result Filters</em>' containment reference.
* @see #getResultFilters()
* @generated
*/
void setResultFilters(LResultFilters value);
/**
* Returns the value of the '<em><b>Filter Depth</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Filter Depth</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Filter Depth</em>' attribute.
* @see #setFilterDepth(int)
* @see org.eclipse.osbp.dsl.semantic.entity.OSBPEntityPackage#getLEntityReference_FilterDepth()
* @generated
*/
int getFilterDepth();
/**
* Sets the value of the '{@link org.eclipse.osbp.dsl.semantic.entity.LEntityReference#getFilterDepth <em>Filter Depth</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Filter Depth</em>' attribute.
* @see #getFilterDepth()
* @generated
*/
void setFilterDepth(int value);
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
boolean isCascading();
} // LEntityReference