All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.equinox.p2.publisher.actions.RootIUAdvice Maven / Gradle / Ivy

The newest version!
/*******************************************************************************
 * Copyright (c) 2008, 2010 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;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy