blob: 1f6765ddec33320888b51a44bccf5a439260ad32 [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.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 children;
public RootIUAdvice(Collection children) {
this.children = children;
}
public Collection getChildren(IPublisherResult result) {
return children;
}
}