alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

What this is

This file is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Other links

The source code

/*******************************************************************************
 * 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.pde.api.tools.internal.provisional.IRequiredComponentDescription;
import org.eclipse.pde.api.tools.internal.provisional.IVersionRange;

/**
 * Implementation of a required component description based on
 * OSGi bundles.
 * 
 * @since 1.0.0
 */
public class RequiredComponentDescription implements IRequiredComponentDescription {
	
	private String fId;
	private boolean fIsOptional;
	private IVersionRange fRange;
	
	
	/**
	 * Constructs a new required component description based on the given
	 * required component id and version range. The required component description is
	 * mandatory. 
	 * 
	 * @param id component's symbolic name
	 * @param range version range
	 */
	public RequiredComponentDescription(String id, IVersionRange range) {
		this(id, range, false);
	}
	
	/**
	 * Constructs a new required component description based on the given
	 * required component id and version range. 
	 * 
	 * @param id component's symbolic name
	 * @param range version range
	 * @param isOptional the optinal flag of the required component
	 */
	public RequiredComponentDescription(String id, IVersionRange range, boolean isOptional) {
		fId = id;
		fRange = range;
		fIsOptional = isOptional;
	}

	/* (non-Javadoc)
	 * @see java.lang.Object#equals(java.lang.Object)
	 */
	public boolean equals(Object obj) {
		if (obj instanceof RequiredComponentDescription) {
			RequiredComponentDescription desc = (RequiredComponentDescription) obj;
			return fId.equals(desc.fId) && fRange.equals(desc.fRange);
		}
		return super.equals(obj);
	}

	/* (non-Javadoc)
	 * @see IRequiredComponentDescription#getId()
	 */
	public String getId() {
		return fId;
	}

	/** (non-Javadoc)
	 * @see IRequiredComponentDescription#getVersionRange()
	 */
	public IVersionRange getVersionRange() {
		return fRange;
	}

	/* (non-Javadoc)
	 * @see java.lang.Object#hashCode()
	 */
	public int hashCode() {
		return fId.hashCode() + fRange.hashCode();
	}

	/* (non-Javadoc)
	 * @see IRequiredComponentDescription#isOptional()
	 */
	public boolean isOptional() {
		return this.fIsOptional;
	}
	/* (non-Javadoc)
	 * @see java.lang.Object#toString()
	 */
	public String toString() {
		StringBuffer buf = new StringBuffer();
		buf.append(fId);
		buf.append(' ');
		buf.append(fRange.toString());
		return buf.toString();
	}

}
... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.