blob: ae43135ad447f064ec8876b97890a3746c8b9ea1 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2006 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.ui.internal.activities;
import java.util.Collection;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Iterator;
import java.util.Map;
import org.eclipse.ui.internal.util.Util;
public final class CategoryActivityBindingDefinition {
private final static int HASH_FACTOR = 89;
private final static int HASH_INITIAL = CategoryActivityBindingDefinition.class
.getName().hashCode();
static Map categoryActivityBindingDefinitionsByCategoryId(
Collection categoryActivityBindingDefinitions) {
if (categoryActivityBindingDefinitions == null) {
throw new NullPointerException();
}
Map map = new HashMap();
Iterator iterator = categoryActivityBindingDefinitions.iterator();
while (iterator.hasNext()) {
Object object = iterator.next();
Util
.assertInstance(object,
CategoryActivityBindingDefinition.class);
CategoryActivityBindingDefinition categoryActivityBindingDefinition = (CategoryActivityBindingDefinition) object;
String categoryId = categoryActivityBindingDefinition
.getCategoryId();
if (categoryId != null) {
Collection categoryActivityBindingDefinitions2 = (Collection) map
.get(categoryId);
if (categoryActivityBindingDefinitions2 == null) {
categoryActivityBindingDefinitions2 = new HashSet();
map.put(categoryId, categoryActivityBindingDefinitions2);
}
categoryActivityBindingDefinitions2
.add(categoryActivityBindingDefinition);
}
}
return map;
}
private String activityId;
private String categoryId;
private transient int hashCode = HASH_INITIAL;
private String sourceId;
private transient String string;
public CategoryActivityBindingDefinition(String activityId,
String categoryId, String sourceId) {
this.activityId = activityId;
this.categoryId = categoryId;
this.sourceId = sourceId;
}
public int compareTo(Object object) {
CategoryActivityBindingDefinition castedObject = (CategoryActivityBindingDefinition) object;
int compareTo = Util.compare(activityId, castedObject.activityId);
if (compareTo == 0) {
compareTo = Util.compare(categoryId, castedObject.categoryId);
if (compareTo == 0) {
compareTo = Util.compare(sourceId, castedObject.sourceId);
}
}
return compareTo;
}
public boolean equals(Object object) {
if (!(object instanceof CategoryActivityBindingDefinition)) {
return false;
}
final CategoryActivityBindingDefinition castedObject = (CategoryActivityBindingDefinition) object;
if (!Util.equals(activityId, castedObject.activityId)) {
return false;
}
if (!Util.equals(categoryId, castedObject.categoryId)) {
return false;
}
return Util.equals(sourceId, castedObject.sourceId);
}
public String getActivityId() {
return activityId;
}
public String getCategoryId() {
return categoryId;
}
public String getSourceId() {
return sourceId;
}
public int hashCode() {
if (hashCode == HASH_INITIAL) {
hashCode = hashCode * HASH_FACTOR + Util.hashCode(activityId);
hashCode = hashCode * HASH_FACTOR + Util.hashCode(categoryId);
hashCode = hashCode * HASH_FACTOR + Util.hashCode(sourceId);
if (hashCode == HASH_INITIAL) {
hashCode++;
}
}
return hashCode;
}
public String toString() {
if (string == null) {
final StringBuffer stringBuffer = new StringBuffer();
stringBuffer.append('[');
stringBuffer.append(activityId);
stringBuffer.append(',');
stringBuffer.append(categoryId);
stringBuffer.append(',');
stringBuffer.append(sourceId);
stringBuffer.append(']');
string = stringBuffer.toString();
}
return string;
}
}