01: /*******************************************************************************
02: * Copyright (c) 2000, 2006 IBM Corporation and others. All rights reserved.
03: * The contents of this file are made available under the terms
04: * of the GNU Lesser General Public License (LGPL) Version 2.1 that
05: * accompanies this distribution (lgpl-v21.txt). The LGPL is also
06: * available at http://www.gnu.org/licenses/lgpl.html. If the version
07: * of the LGPL at http://www.gnu.org is different to the version of
08: * the LGPL accompanying this distribution and there is any conflict
09: * between the two license versions, the terms of the LGPL accompanying
10: * this distribution shall govern.
11: *
12: * Contributors:
13: * IBM Corporation - initial API and implementation
14: *******************************************************************************/package org.eclipse.swt.internal.gtk;
15:
16: public class GObjectClass {
17: public int /*long*/constructor;
18: public int /*long*/set_property;
19: public int /*long*/get_property;
20: public int /*long*/dispose;
21: public int /*long*/finalize;
22: public int /*long*/dispatch_properties_changed;
23: public int /*long*/notify;
24: }
|