view dwt/internal/Platform.d @ 58:6d9ec9ccdcdd

Updated Accessible to 3.514
author Jacob Carlborg <doob@me.com>
date Tue, 09 Dec 2008 21:35:30 +0100
parents d8635bb48c7c
children 62202ce0039f
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
 *     
 * Port to the D programming language:
 *     Jacob Carlborg <doob@me.com>
 *******************************************************************************/
module dwt.internal.Platform;

import dwt.dwthelper.utils;
import dwt.internal.Lock;

public class Platform {
    
public static const String PLATFORM = "cocoa"; //$NON-NLS-1$
public static final Lock lock = new Lock ();
}