blob: 3300f81b89c5f3e4b16e74bc6d5f4e351ba15248 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010, 2014 Willink Transformations 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:
* E.D.Willink - Initial API and implementation
*******************************************************************************/
package org.eclipse.ocl.pivot.library.collection;
import org.eclipse.jdt.annotation.NonNull;
import org.eclipse.jdt.annotation.Nullable;
import org.eclipse.ocl.pivot.library.AbstractSimpleBinaryOperation;
import org.eclipse.ocl.pivot.values.CollectionValue;
/**
* CollectionIncludesAllOperation realises the Collection::includesAll() library operation.
*/
public class CollectionIncludesAllOperation extends AbstractSimpleBinaryOperation
{
public static final @NonNull CollectionIncludesAllOperation INSTANCE = new CollectionIncludesAllOperation();
@Override
public @NonNull Boolean evaluate(@Nullable Object left, @Nullable Object right) {
CollectionValue leftCollectionValue = asCollectionValue(left);
CollectionValue rightCollectionValue = asCollectionValue(right);
return leftCollectionValue.includesAll(rightCollectionValue);
}
}