blob: 16e40b2241ed0e1a8b61c4f7941a2fce5eabd634 [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>Integer Iterate</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.osbp.xtext.entitymock.IntegerIterate#getFrom <em>From</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.entitymock.IntegerIterate#getUntil <em>Until</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.entitymock.IntegerIterate#getStep <em>Step</em>}</li>
* </ul>
*
* @see org.eclipse.osbp.xtext.entitymock.EntityMockDSLPackage#getIntegerIterate()
* @model
* @generated
*/
public interface IntegerIterate extends IIterate {
/**
* Returns the value of the '<em><b>From</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>From</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>From</em>' attribute.
* @see #setFrom(int)
* @see org.eclipse.osbp.xtext.entitymock.EntityMockDSLPackage#getIntegerIterate_From()
* @model unique="false"
* @generated
*/
int getFrom();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.entitymock.IntegerIterate#getFrom <em>From</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>From</em>' attribute.
* @see #getFrom()
* @generated
*/
void setFrom(int value);
/**
* Returns the value of the '<em><b>Until</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Until</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Until</em>' attribute.
* @see #setUntil(int)
* @see org.eclipse.osbp.xtext.entitymock.EntityMockDSLPackage#getIntegerIterate_Until()
* @model unique="false"
* @generated
*/
int getUntil();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.entitymock.IntegerIterate#getUntil <em>Until</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Until</em>' attribute.
* @see #getUntil()
* @generated
*/
void setUntil(int value);
/**
* Returns the value of the '<em><b>Step</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Step</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</em>' attribute.
* @see #setStep(int)
* @see org.eclipse.osbp.xtext.entitymock.EntityMockDSLPackage#getIntegerIterate_Step()
* @model unique="false"
* @generated
*/
int getStep();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.entitymock.IntegerIterate#getStep <em>Step</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Step</em>' attribute.
* @see #getStep()
* @generated
*/
void setStep(int value);
} // IntegerIterate