KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > swt > internal > carbon > NavDialogCreationOptions


1 /**********************************************************************
2  * Copyright (c) 2003-2004 IBM Corp.
3  * Portions Copyright (c) 1983-2002, Apple Computer, Inc.
4  *
5  * All rights reserved. This program and the accompanying materials
6  * are made available under the terms of the Eclipse Public License v1.0
7  * which accompanies this distribution, and is available at
8  * http://www.eclipse.org/legal/epl-v10.html
9  *
10  * Contributors:
11  * IBM Corporation - initial API and implementation
12  **********************************************************************/

13 package org.eclipse.swt.internal.carbon;
14
15
16 public class NavDialogCreationOptions {
17     public short version;
18     public int optionFlags;
19 // Point location;
20
public short location_h;
21     public short location_v;
22     public int clientName;
23     public int windowTitle;
24     public int actionButtonLabel;
25     public int cancelButtonLabel;
26     public int saveFileName;
27     public int message;
28     public int preferenceKey;
29     public int popupExtension;
30     public int modality;
31     public int parentWindow;
32 // char reserved[16];
33
public static final int sizeof = 66;
34 }
35
Popular Tags