blob: 06c52bd501c453f30524df91119d0257b0041c00 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2003 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ui.internal.activities;
import java.util.regex.Pattern;
import org.eclipse.ui.activities.IActivityPatternBinding;
import org.eclipse.ui.internal.util.Util;
public final class ActivityPatternBinding implements IActivityPatternBinding {
private final static int HASH_FACTOR = 89;
private final static int HASH_INITIAL =
ActivityPatternBinding.class.getName().hashCode();
private String activityId;
private transient int hashCode;
private transient boolean hashCodeComputed;
private Pattern pattern;
private transient String string;
public ActivityPatternBinding(String activityId, Pattern pattern) {
if (pattern == null)
throw new NullPointerException();
this.activityId = activityId;
this.pattern = pattern;
}
public int compareTo(Object object) {
ActivityPatternBinding castedObject = (ActivityPatternBinding) object;
int compareTo = Util.compare(activityId, castedObject.activityId);
if (compareTo == 0)
compareTo =
Util.compare(pattern.pattern(), castedObject.pattern.pattern());
return compareTo;
}
public boolean equals(Object object) {
if (!(object instanceof ActivityPatternBinding))
return false;
ActivityPatternBinding castedObject = (ActivityPatternBinding) object;
boolean equals = true;
equals &= Util.equals(activityId, castedObject.activityId);
equals &= Util.equals(pattern, castedObject.pattern);
return equals;
}
public String getActivityId() {
return activityId;
}
public Pattern getPattern() {
return pattern;
}
public int hashCode() {
if (!hashCodeComputed) {
hashCode = HASH_INITIAL;
hashCode = hashCode * HASH_FACTOR + Util.hashCode(activityId);
hashCode = hashCode * HASH_FACTOR + Util.hashCode(pattern);
hashCodeComputed = true;
}
return hashCode;
}
public String toString() {
if (string == null) {
final StringBuffer stringBuffer = new StringBuffer();
stringBuffer.append('[');
stringBuffer.append(activityId);
stringBuffer.append(',');
stringBuffer.append(pattern);
stringBuffer.append(']');
string = stringBuffer.toString();
}
return string;
}
}