blob: 46c0dfcc13ba450734653f900937f95f630c5e06 [file] [log] [blame]
/*****************************************************************************
* Copyright (c) 2017 CEA LIST.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* CEA LIST Initial API and implementation
*****************************************************************************/
package org.eclipse.papyrus.moka.fuml.activities;
import java.util.List;
import org.eclipse.papyrus.moka.fuml.activities.IToken;
public class CentralBufferNodeActivation extends ObjectNodeActivation{
@Override
public void fire(List<IToken> incomingTokens) {
// Add all incoming tokens to the central buffer node.
// Offer any tokens that have not yet been offered.
this.addTokens(incomingTokens);
this.sendUnofferedTokens();
}
}