blob: a4585494bd5d1f32c87a36f3179535a31d8843fe [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2018 SAP AG and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* SAP AG - initial API and implementation
******************************************************************************
*/
package dataaccess.expressions.collectionexpressions;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Excluding</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* Produces a new value which includes one less occurrence of the *argument* object than *source* or no occurrence if *source* did not contain an occurrence.
*
* If the *source* expression had multiplicity a..b, the resulting expression's multiplicity is Max(a-1, 0)..b, regardless of whether an object actually gets removed.
* <!-- end-model-doc -->
*
*
* @see dataaccess.expressions.collectionexpressions.CollectionexpressionsPackage#getExcluding()
* @model
* @generated
*/
public interface Excluding extends CollectionExpressionWithArgument {
} // Excluding