view dwt/internal/LONG.d @ 10:63c023465156

moved from org.eclipse.swt to dwt
author Frank Benoit <benoit@tionex.de>
date Sat, 05 Jan 2008 17:58:37 +0100
parents ad2b69216039
children 8cec8f536af3
line wrap: on
line source

/*******************************************************************************
 * Copyright (c) 2000, 2007 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
 *******************************************************************************/
module dwt.internal.LONG;

public class LONG {
	public int /*long*/ value;

	public this (int /*long*/ value) {
		this.value = value;
	}

	public int opEquals (Object object) {
		if (object is this){
            return true;
        }
		if ( auto obj = cast(LONG)object ) {
            return obj.value == this.value;
        }
        return false;
	}

	public int hashCode () {
		return /*64*/value;
	}
}