blob: cde61be5c42801731dc1b8eb92e179fd048b6902 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2011 SAP AG and others.
* 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
*
* Contributors:
* SAP AG - initial API and implementation
******************************************************************************
* $Id: WithPosition.java,v 1.2 2011/03/05 21:51:24 auhl Exp $
*/
package dataaccess.expressions.collectionexpressions;
import dataaccess.expressions.ExpressionWithArgument;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>With Position</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link dataaccess.expressions.collectionexpressions.WithPosition#getAt <em>At</em>}</li>
* </ul>
* </p>
*
* @see dataaccess.expressions.collectionexpressions.CollectionexpressionsPackage#getWithPosition()
* @model abstract="true"
* annotation="http://www.eclipse.org/emf/2002/Ecore/OCL SourceMustBeOrdered='self.argument.getType().ordered'"
* annotation="http://www.eclipse.org/emf/2002/Ecore constraints='SourceMustBeOrdered'"
* @generated
*/
public interface WithPosition extends ExpressionWithArgument {
/**
* Returns the value of the '<em><b>At</b></em>' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* a position in an object with upper multiplicity >1 and ordered=true.
* <!-- end-model-doc -->
* @return the value of the '<em>At</em>' attribute.
* @see #setAt(int)
* @see dataaccess.expressions.collectionexpressions.CollectionexpressionsPackage#getWithPosition_At()
* @model unique="false" required="true" ordered="false"
* @generated
*/
int getAt();
/**
* Sets the value of the '{@link dataaccess.expressions.collectionexpressions.WithPosition#getAt <em>At</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>At</em>' attribute.
* @see #getAt()
* @generated
*/
void setAt(int value);
} // WithPosition