blob: 85d6051cb2fdab98a69a0c306ad37b7c86fb488f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2009 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 children;
public RootIUAdvice(Collection children) {
this.children = children;
}
public Collection getChildren(IPublisherResult result) {
return children;
}
}