view dwt/internal/LONG.d @ 59:8cec8f536af3

All D sources complete gvim retab (4 spaces), bug with Composite moveAbove/moveBelow fixed.
author Frank Benoit <benoit@tionex.de>
date Sat, 12 Jan 2008 08:44:23 +0100
parents 63c023465156
children 0f12f6bb9739
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;
    }
}