comparison dwt/graphics/DeviceData.d @ 9:ad2b69216039

moved org.eclipse.swt to dwt
author Frank Benoit <benoit@tionex.de>
date Sat, 05 Jan 2008 17:39:49 +0100
parents org/eclipse/swt/graphics/DeviceData.d@de77855733ca
children 63c023465156
comparison
equal deleted inserted replaced
8:a1f832ca7d17 9:ad2b69216039
1 /*******************************************************************************
2 * Copyright (c) 2000, 2004 IBM Corporation and others.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html
7 *
8 * Contributors:
9 * IBM Corporation - initial API and implementation
10 *******************************************************************************/
11 module org.eclipse.swt.graphics.DeviceData;
12
13 import tango.core.Exception;
14
15 public class DeviceData {
16 /*
17 * The following fields are platform dependent.
18 * <p>
19 * <b>IMPORTANT:</b> These fields are <em>not</em> part of the SWT
20 * public API. They are marked public only so that they can be shared
21 * within the packages provided by SWT. They are not available on all
22 * platforms and should never be accessed from application code.
23 * </p>
24 */
25 public char[] display_name;
26 public char[] application_name;
27 public char[] application_class;
28
29 /*
30 * Debug fields - may not be honoured
31 * on some SWT platforms.
32 */
33 public bool debugging;
34 public bool tracking;
35 public TracedException [] errors;
36 public Object [] objects;
37 }