Skip to main content
summaryrefslogtreecommitdiffstats
blob: 5aa51c328c2bee0f07e080015b39f64593f30d00 (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
/*******************************************************************************
 * Copyright (c) 2008, 2017 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
 *   IBM - ongoing development
 ******************************************************************************/
package org.eclipse.equinox.p2.publisher.actions;

import java.util.Collection;
import org.eclipse.equinox.p2.publisher.AbstractAdvice;
import org.eclipse.equinox.p2.publisher.IPublisherResult;

/**
 * Advises publisher actions as to which IUs should be listed as children of an
 * eventual root IU.  Each child is described as a VersionedName.
 */
public class RootIUAdvice extends AbstractAdvice implements IRootIUAdvice {

	private Collection<? extends Object> children;

	public RootIUAdvice(Collection<? extends Object> children) {
		this.children = children;
	}

	@Override
	public Collection<? extends Object> getChildren(IPublisherResult result) {
		return children;
	}

}

Back to the top