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 PangoAttribute {
17: public int /*long*/klass;
18: public int start_index;
19: public int end_index;
20: public static final int sizeof = OS.PangoAttribute_sizeof();
21: }
|