blob: 692a4cff83278e7a35a5ecd258de8be7b5029511 [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;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>LTable Per Class Strategy</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.osbp.dsl.semantic.entity.LTablePerClassStrategy#getDiscriminatorColumn <em>Discriminator Column</em>}</li>
* <li>{@link org.eclipse.osbp.dsl.semantic.entity.LTablePerClassStrategy#getDiscriminatorType <em>Discriminator Type</em>}</li>
* <li>{@link org.eclipse.osbp.dsl.semantic.entity.LTablePerClassStrategy#getDiscriminatorValue <em>Discriminator Value</em>}</li>
* </ul>
*
* @see org.eclipse.osbp.dsl.semantic.entity.OSBPEntityPackage#getLTablePerClassStrategy()
* @generated
*/
public interface LTablePerClassStrategy extends LEntityInheritanceStrategy {
/**
* Returns the value of the '<em><b>Discriminator Column</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Discriminator 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>Discriminator Column</em>' attribute.
* @see #setDiscriminatorColumn(String)
* @see org.eclipse.osbp.dsl.semantic.entity.OSBPEntityPackage#getLTablePerClassStrategy_DiscriminatorColumn()
* @generated
*/
String getDiscriminatorColumn();
/**
* Sets the value of the '{@link org.eclipse.osbp.dsl.semantic.entity.LTablePerClassStrategy#getDiscriminatorColumn <em>Discriminator Column</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Discriminator Column</em>' attribute.
* @see #getDiscriminatorColumn()
* @generated
*/
void setDiscriminatorColumn(String value);
/**
* Returns the value of the '<em><b>Discriminator Type</b></em>' attribute.
* The literals are from the enumeration {@link org.eclipse.osbp.dsl.semantic.entity.LDiscriminatorType}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Discriminator 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>Discriminator Type</em>' attribute.
* @see org.eclipse.osbp.dsl.semantic.entity.LDiscriminatorType
* @see #setDiscriminatorType(LDiscriminatorType)
* @see org.eclipse.osbp.dsl.semantic.entity.OSBPEntityPackage#getLTablePerClassStrategy_DiscriminatorType()
* @generated
*/
LDiscriminatorType getDiscriminatorType();
/**
* Sets the value of the '{@link org.eclipse.osbp.dsl.semantic.entity.LTablePerClassStrategy#getDiscriminatorType <em>Discriminator Type</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Discriminator Type</em>' attribute.
* @see org.eclipse.osbp.dsl.semantic.entity.LDiscriminatorType
* @see #getDiscriminatorType()
* @generated
*/
void setDiscriminatorType(LDiscriminatorType value);
/**
* Returns the value of the '<em><b>Discriminator Value</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Discriminator Value</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Discriminator Value</em>' attribute.
* @see #setDiscriminatorValue(String)
* @see org.eclipse.osbp.dsl.semantic.entity.OSBPEntityPackage#getLTablePerClassStrategy_DiscriminatorValue()
* @generated
*/
String getDiscriminatorValue();
/**
* Sets the value of the '{@link org.eclipse.osbp.dsl.semantic.entity.LTablePerClassStrategy#getDiscriminatorValue <em>Discriminator Value</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Discriminator Value</em>' attribute.
* @see #getDiscriminatorValue()
* @generated
*/
void setDiscriminatorValue(String value);
} // LTablePerClassStrategy