Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: e6fd86d36615c506cc8ddaa12ec39bafb44c2877 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/*******************************************************************************
 *  Copyright (c) 2008, 2017 IBM Corporation and others.
 *
 *  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:
 *      IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.pde.internal.build.publisher;

import java.util.ArrayList;
import java.util.List;
import org.eclipse.equinox.p2.publisher.AbstractPublisherApplication;
import org.eclipse.equinox.p2.publisher.IPublisherAction;

public class BuildPublisherApplication extends AbstractPublisherApplication {
	private List<IPublisherAction> actions;

	public void addAction(IPublisherAction action) {
		if (actions == null)
			actions = new ArrayList<>(1);
		actions.add(action);
	}

	@Override
	protected IPublisherAction[] createActions() {
		if (actions == null)
			return new IPublisherAction[0];
		return actions.toArray(new IPublisherAction[actions.size()]);
	}

	public void setAppend(boolean value) {
		super.append = value;
	}

}

Back to the top