blob: 30e6d7e3bd6381cbb4e7593a02cb9e200ee80298 [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.datamartdsl;
import org.eclipse.osbp.dsl.semantic.entity.LEntityAttribute;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Property Filler Data</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.osbp.xtext.datamartdsl.PropertyFillerData#getPropertyRef <em>Property Ref</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.datamartdsl.PropertyFillerData#getFillerType <em>Filler Type</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.osbp.xtext.datamartdsl.DatamartDSLPackage#getPropertyFillerData()
* @model
* @generated
*/
public interface PropertyFillerData extends DatamartLazyResolver {
/**
* Returns the value of the '<em><b>Property Ref</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Property Ref</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Property Ref</em>' reference.
* @see #setPropertyRef(LEntityAttribute)
* @see org.eclipse.osbp.xtext.datamartdsl.DatamartDSLPackage#getPropertyFillerData_PropertyRef()
* @model
* @generated
*/
LEntityAttribute getPropertyRef();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.datamartdsl.PropertyFillerData#getPropertyRef <em>Property Ref</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Property Ref</em>' reference.
* @see #getPropertyRef()
* @generated
*/
void setPropertyRef(LEntityAttribute value);
/**
* Returns the value of the '<em><b>Filler Type</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Filler Type</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>Filler Type</em>' containment reference.
* @see #setFillerType(PropertyFillerType)
* @see org.eclipse.osbp.xtext.datamartdsl.DatamartDSLPackage#getPropertyFillerData_FillerType()
* @model containment="true"
* @generated
*/
PropertyFillerType getFillerType();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.datamartdsl.PropertyFillerData#getFillerType <em>Filler Type</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Filler Type</em>' containment reference.
* @see #getFillerType()
* @generated
*/
void setFillerType(PropertyFillerType value);
} // PropertyFillerData