static void GetPosition_cb(IntPtr inst, out int x, out int y, int coord_type)
 {
     try {
         IComponentImplementor __obj = GLib.Object.GetObject(inst, false) as IComponentImplementor;
         __obj.GetPosition(out x, out y, (Atk.CoordType)coord_type);
     } catch (Exception e) {
         GLib.ExceptionManager.RaiseUnhandledException(e, true);
         // NOTREACHED: above call does not return.
         throw e;
     }
 }