~ubuntu-branches/debian/sid/swt-gtk/sid

« back to all changes in this revision

Viewing changes to org/eclipse/swt/internal/gtk/GdkRectangle.java

  • Committer: Bazaar Package Importer
  • Author(s): Adrian Perez
  • Date: 2009-12-07 10:22:24 UTC
  • mfrom: (1.2.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20091207102224-70w2tax575mcks1w
Tags: 3.5.1-1
* New upstream release. Closes: #558663.
* debian/control: 
  - Add Vcs-* fields for Git repository.
  - Allow DM-Uploads.
  - Remove "Conflicts", package should live with eclipse.
* debian/rules: Fix default-java path around AWT_LIB_PATH.
* debian/copyright: Minor update.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*******************************************************************************
2
 
 * Copyright (c) 2000, 2006 IBM Corporation and others. All rights reserved.
 
2
 * Copyright (c) 2000, 2008 IBM Corporation and others. All rights reserved.
3
3
 * The contents of this file are made available under the terms
4
4
 * of the GNU Lesser General Public License (LGPL) Version 2.1 that
5
5
 * accompanies this distribution (lgpl-v21.txt).  The LGPL is also
16
16
 
17
17
 
18
18
public class GdkRectangle {
 
19
        /** @field cast=(gint) */
19
20
        public int x;
 
21
        /** @field cast=(gint) */
20
22
        public int y;
 
23
        /** @field cast=(gint) */
21
24
        public int width;
 
25
        /** @field cast=(gint) */
22
26
        public int height;
23
27
        public static final int sizeof = OS.GdkRectangle_sizeof();
24
28
}