KickJava   Java API By Example, From Geeks To Geeks.

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


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 NavReplyRecord {
17     public short version;
18     public boolean validRecord;
19     public boolean replacing;
20     public boolean isStationery;
21     public boolean translationNeeded;
22     //AEDescList selection;
23
public int selection_descriptorType;
24     public int selection_dataHandle;
25     public short keyScript;
26     public int fileTranslation;
27     public int reserved1;
28     public int saveFileName;
29     public boolean saveFileExtensionHidden;
30     public byte reserved2;
31     public byte[] reserved = new byte[225];
32     public static final int sizeof = 256;
33 }
34
Popular Tags