/*******************************************************************************
* Copyright (c) 2007, 2008 IBM Corporation 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.pde.api.tools.internal;
import org.eclipse.osgi.service.resolver.VersionRange;
import org.eclipse.pde.api.tools.internal.provisional.IVersionRange;
import org.osgi.framework.Version;
/**
* Implementation of a required component description based on
* OSGi bundles.
*
* @since 1.0.0
*/
public class BundleVersionRange implements IVersionRange {
private VersionRange fRange;
/**
* Constructs a new version range based on the given
* required bundle version interval.
*
* @param versionInterval string representing mathematical interval
* describing range of compatible versions
*/
public BundleVersionRange(String versionInterval) {
fRange = new VersionRange(versionInterval);
}
/**
* Constructs a new version range based on the given range.
*
* @param range version range
*/
public BundleVersionRange(VersionRange range) {
fRange = range;
}
/* (non-Javadoc)
* @see org.eclipse.pde.api.tools.manifest.IRequiredComponentDescription#getMaximumVersion()
*/
public String getMaximumVersion() {
return fRange.getMaximum().toString();
}
/* (non-Javadoc)
* @see org.eclipse.pde.api.tools.manifest.IRequiredComponentDescription#getMinimumVersion()
*/
public String getMinimumVersion() {
return fRange.getMinimum().toString();
}
/* (non-Javadoc)
* @see org.eclipse.pde.api.tools.manifest.IRequiredComponentDescription#isIncludeMaximum()
*/
public boolean isIncludeMaximum() {
return fRange.getIncludeMaximum();
}
/* (non-Javadoc)
* @see org.eclipse.pde.api.tools.manifest.IRequiredComponentDescription#isIncludeMinimum()
*/
public boolean isIncludeMinimum() {
return fRange.getIncludeMinimum();
}
public boolean equals(Object obj) {
if (obj instanceof BundleVersionRange) {
BundleVersionRange range = (BundleVersionRange) obj;
return fRange.equals(range.fRange);
}
return false;
}
/* (non-Javadoc)
* @see java.lang.Object#hashCode()
*/
public int hashCode() {
return fRange.hashCode();
}
public String toString() {
return fRange.toString();
}
/* (non-Javadoc)
* @see org.eclipse.pde.api.tools.manifest.IVersionRange#isIncluded(java.lang.String)
*/
public boolean isIncluded(String version) {
return fRange.isIncluded(new Version(version));
}
}
|