blob: 500086e2448cd7d9b7f39af82ac32cda3492ee7b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2013 E.D.Willink 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:
* E.D.Willink - Initial API and implementation
*******************************************************************************/
package org.eclipse.ocl.examples.library.iterator;
import org.eclipse.jdt.annotation.NonNull;
import org.eclipse.jdt.annotation.Nullable;
import org.eclipse.ocl.examples.domain.evaluation.DomainEvaluator;
import org.eclipse.ocl.examples.domain.evaluation.DomainIterationManager;
import org.eclipse.ocl.examples.domain.ids.TypeId;
import org.eclipse.ocl.examples.domain.library.AbstractIteration;
/**
* IterateIteration realizes the Collection::iterate() library iteration.
*/
public class IterateIteration extends AbstractIteration
{
public static final @NonNull IterateIteration INSTANCE = new IterateIteration();
public @NonNull Object createAccumulatorValue(@NonNull DomainEvaluator evaluator, @NonNull TypeId accumulatorTypeId, @NonNull TypeId bodyTypeId) {
throw new UnsupportedOperationException(); // Never used since values are assigned directly as the accumulator
}
@Override
protected @Nullable Object updateAccumulator(@NonNull DomainIterationManager iterationManager) {
Object bodyValue = iterationManager.evaluateBody();
iterationManager.updateAccumulator(bodyValue);
return CARRY_ON;
}
}