blob: fa8ccdf7ec3c0e371b593ead5847fb3ca1fa0946 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 Code 9 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:
* Code 9 - initial API and implementation
******************************************************************************/
package org.eclipse.equinox.internal.p2.publisher.actions;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.Status;
import org.eclipse.equinox.internal.p2.publisher.*;
public class MergeResultsAction extends AbstractPublishingAction {
private IPublishingAction[] actions;
private int mode;
public MergeResultsAction(IPublishingAction[] actions, int mode) {
this.actions = actions;
this.mode = mode;
}
public IStatus perform(IPublisherInfo info, IPublisherResult results) {
for (int i = 0; i < actions.length; i++) {
IPublishingAction action = actions[i];
IPublisherResult result = new PublisherResult();
action.perform(info, result);
results.merge(result, mode);
}
return Status.OK_STATUS;
}
}