KickJava   Java API By Example, From Geeks To Geeks.

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


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 ATSTrapezoid {
17     //FixedPoint upperLeft;
18
public int upperLeft_x;
19     public int upperLeft_y;
20     //FixedPoint upperRight;
21
public int upperRight_x;
22     public int upperRight_y;
23     //FixedPoint lowerRight;
24
public int lowerRight_x;
25     public int lowerRight_y;
26     //FixedPoint lowerLeft;
27
public int lowerLeft_x;
28     public int lowerLeft_y;
29     public static final int sizeof = 32;
30 }
31
Popular Tags