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

« back to all changes in this revision

Viewing changes to org/eclipse/swt/internal/accessibility/gtk/ATK.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
144
144
                lock.unlock();
145
145
        }
146
146
}
 
147
/** @param object cast=(AtkObject *) */
147
148
public static final native void _atk_focus_tracker_notify (int /*long*/ object);
148
149
public static final void atk_focus_tracker_notify (int /*long*/ object) {
149
150
        lock.lock();
162
163
                lock.unlock();
163
164
        }
164
165
}
 
166
/**
 
167
 * @param factory cast=(AtkObjectFactory *)
 
168
 * @param obj cast=(GObject *)
 
169
 */
165
170
public static final native int /*long*/ _atk_object_factory_create_accessible (int /*long*/ factory, int /*long*/ obj);
166
171
public static final int /*long*/ atk_object_factory_create_accessible (int /*long*/ factory, int /*long*/ obj) {
167
172
        lock.lock();
171
176
                lock.unlock();
172
177
        }
173
178
}
 
179
/** @param factory cast=(AtkObjectFactory *) */
174
180
public static final native int /*long*/ _atk_object_factory_get_accessible_type (int /*long*/ factory);
175
181
public static final int /*long*/ atk_object_factory_get_accessible_type (int /*long*/ factory) {
176
182
        lock.lock();
180
186
                lock.unlock();
181
187
        }
182
188
}
 
189
/**
 
190
 * @param accessible cast=(AtkObject *)
 
191
 * @param data cast=(gpointer)
 
192
 */
183
193
public static final native void _atk_object_initialize (int /*long*/ accessible, int /*long*/ data);
184
194
public static final void atk_object_initialize (int /*long*/ accessible, int /*long*/ data) {
185
195
        lock.lock();
189
199
                lock.unlock();
190
200
        }
191
201
}
 
202
/** @param accessible cast=(AtkObject *) */
192
203
public static final native int /*long*/ _atk_object_ref_relation_set (int /*long*/ accessible);
193
204
public static final int /*long*/ atk_object_ref_relation_set (int /*long*/ accessible) {
194
205
        lock.lock();
198
209
                lock.unlock();
199
210
        }
200
211
}
 
212
/**
 
213
 * @param registry cast=(AtkRegistry *)
 
214
 * @param type cast=(GType)
 
215
 */
201
216
public static final native int /*long*/ _atk_registry_get_factory (int /*long*/ registry, int /*long*/ type);
202
217
public static final int /*long*/ atk_registry_get_factory (int /*long*/ registry, int /*long*/ type) {
203
218
        lock.lock();
207
222
                lock.unlock();
208
223
        }
209
224
}
 
225
/**
 
226
 * @param registry cast=(AtkRegistry *)
 
227
 * @param type cast=(GType)
 
228
 * @param factory_type cast=(GType)
 
229
 */
210
230
public static final native void _atk_registry_set_factory_type (int /*long*/ registry, int /*long*/ type, int /*long*/ factory_type);
211
231
public static final void atk_registry_set_factory_type (int /*long*/ registry, int /*long*/ type, int /*long*/ factory_type) {
212
232
        lock.lock();
216
236
                lock.unlock();
217
237
        }
218
238
}
 
239
/** @param set cast=(AtkRelationSet *) */
219
240
public static final native int _atk_relation_set_get_n_relations (int /*long*/ set);
220
241
public static final int atk_relation_set_get_n_relations (int /*long*/ set) {
221
242
        lock.lock();
225
246
                lock.unlock();
226
247
        }
227
248
}
 
249
/** @param set cast=(AtkRelationSet *) */
228
250
public static final native int /*long*/ _atk_relation_set_get_relation (int /*long*/ set, int i);
229
251
public static final int /*long*/ atk_relation_set_get_relation (int /*long*/ set, int i) {
230
252
        lock.lock();
234
256
                lock.unlock();
235
257
        }
236
258
}
 
259
/**
 
260
 * @param set cast=(AtkRelationSet *)
 
261
 * @param relation cast=(AtkRelation *)
 
262
 */
237
263
public static final native void _atk_relation_set_remove (int /*long*/ set, int /*long*/ relation);
238
264
public static final void atk_relation_set_remove (int /*long*/ set, int /*long*/ relation) {
239
265
        lock.lock();
243
269
                lock.unlock();
244
270
        }
245
271
}
 
272
/**
 
273
 * @param set cast=(AtkStateSet *)
 
274
 * @param type cast=(AtkStateType)
 
275
 */
246
276
public static final native boolean _atk_state_set_add_state (int /*long*/ set, int type);
247
277
public static final boolean atk_state_set_add_state (int /*long*/ set, int type) {
248
278
        lock.lock();