blob: 09c2919edfd7edd6d89a8f055121f23116b2c1e5 [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.entitymock;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Date Iterate</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.osbp.xtext.entitymock.DateIterate#getFrom <em>From</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.entitymock.DateIterate#getUntil <em>Until</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.entitymock.DateIterate#getStepCount <em>Step Count</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.entitymock.DateIterate#getStepType <em>Step Type</em>}</li>
* </ul>
*
* @see org.eclipse.osbp.xtext.entitymock.EntityMockDSLPackage#getDateIterate()
* @model
* @generated
*/
public interface DateIterate extends IIterate {
/**
* Returns the value of the '<em><b>From</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>From</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>From</em>' containment reference.
* @see #setFrom(Date)
* @see org.eclipse.osbp.xtext.entitymock.EntityMockDSLPackage#getDateIterate_From()
* @model containment="true"
* @generated
*/
Date getFrom();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.entitymock.DateIterate#getFrom <em>From</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>From</em>' containment reference.
* @see #getFrom()
* @generated
*/
void setFrom(Date value);
/**
* Returns the value of the '<em><b>Until</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Until</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>Until</em>' containment reference.
* @see #setUntil(Date)
* @see org.eclipse.osbp.xtext.entitymock.EntityMockDSLPackage#getDateIterate_Until()
* @model containment="true"
* @generated
*/
Date getUntil();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.entitymock.DateIterate#getUntil <em>Until</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Until</em>' containment reference.
* @see #getUntil()
* @generated
*/
void setUntil(Date value);
/**
* Returns the value of the '<em><b>Step Count</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Step Count</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Step Count</em>' attribute.
* @see #setStepCount(int)
* @see org.eclipse.osbp.xtext.entitymock.EntityMockDSLPackage#getDateIterate_StepCount()
* @model unique="false"
* @generated
*/
int getStepCount();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.entitymock.DateIterate#getStepCount <em>Step Count</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Step Count</em>' attribute.
* @see #getStepCount()
* @generated
*/
void setStepCount(int value);
/**
* Returns the value of the '<em><b>Step Type</b></em>' attribute.
* The literals are from the enumeration {@link org.eclipse.osbp.xtext.entitymock.EDateStepType}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Step 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>Step Type</em>' attribute.
* @see org.eclipse.osbp.xtext.entitymock.EDateStepType
* @see #setStepType(EDateStepType)
* @see org.eclipse.osbp.xtext.entitymock.EntityMockDSLPackage#getDateIterate_StepType()
* @model unique="false"
* @generated
*/
EDateStepType getStepType();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.entitymock.DateIterate#getStepType <em>Step Type</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Step Type</em>' attribute.
* @see org.eclipse.osbp.xtext.entitymock.EDateStepType
* @see #getStepType()
* @generated
*/
void setStepType(EDateStepType value);
} // DateIterate