/******************************************************************************* * Copyright (c) 2009, 2014 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 ****************************************************************************** */ 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