blob: 465d58db9a0e7e295a698293a07f5b03ddf236d5 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011 Obeo.
* 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:
* Obeo - initial API and implementation
*******************************************************************************/
package org.eclipse.sirius.synchronizer;
/**
*
* A signature implementation wrapping an Integer value.
*
* @author Cedric Brun <cedric.brun@obeo.fr>
*
*/
public class IntegerSignature implements Signature {
private Integer value;
public IntegerSignature(Integer value) {
this.value = value;
}
@Override
public boolean equals(Object arg0) {
if (arg0 instanceof IntegerSignature) {
return this.value.equals(((IntegerSignature) arg0).value);
}
return false;
}
@Override
public int hashCode() {
return this.value.hashCode();
}
}