blob: 0673b5ffead1f7553b8b9d73e015c6d841c2bc15 [file] [log] [blame]
/*********************************************************************
* Copyright (c) 2016 GianMaria Romanato
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
**********************************************************************/
package org.eclipse.virgo.ide.facet.internal.core;
import org.osgi.framework.Version;
/**
* Represents a reference to a bundle.
*/
public class BundleReference extends Artifact {
/* package */ BundleReference(String name, Version version) {
super(name, version);
}
}