Esempio n. 1
0
 @MarshalsPointer
 public static long toNative(CTFrameClippingPath o, long flags) {
   if (o == null) {
     return 0L;
   }
   return CFType.Marshaler.toNative(o.data, flags);
 }
Esempio n. 2
0
 @MarshalsPointer
 public static List<?> toObject(Class<? extends CFType> cls, long handle, long flags) {
   CFArray o = (CFArray) CFType.Marshaler.toObject(CFArray.class, handle, flags);
   if (o == null) {
     return null;
   }
   return o.toList(CTLine.class);
 }
Esempio n. 3
0
 @MarshalsPointer
 public static CTFrameClippingPath toObject(
     Class<CTFrameClippingPath> cls, long handle, long flags) {
   CFDictionary o = (CFDictionary) CFType.Marshaler.toObject(CFDictionary.class, handle, flags);
   if (o == null) {
     return null;
   }
   return new CTFrameClippingPath(o);
 }
Esempio n. 4
0
 @MarshalsPointer
 public static long toNative(List<CTFrameClippingPath> l, long flags) {
   if (l == null) {
     return 0L;
   }
   CFArray array = CFMutableArray.create();
   for (CTFrameClippingPath i : l) {
     array.add(i.getDictionary());
   }
   return CFType.Marshaler.toNative(array, flags);
 }
Esempio n. 5
0
 @MarshalsPointer
 public static List<CTFrameClippingPath> toObject(
     Class<? extends CFType> cls, long handle, long flags) {
   CFArray o = (CFArray) CFType.Marshaler.toObject(cls, handle, flags);
   if (o == null) {
     return null;
   }
   List<CTFrameClippingPath> list = new ArrayList<>();
   for (int i = 0; i < o.size(); i++) {
     list.add(new CTFrameClippingPath(o.get(i, CFDictionary.class)));
   }
   return list;
 }
Esempio n. 6
0
 @MarshalsPointer
 public static long toNative(List<? extends CFType> l, long flags) {
   if (l == null) {
     return 0L;
   }
   CFArray o = null;
   if (l instanceof CFArray) {
     o = (CFArray) l;
   } else {
     o = CFArray.create((List<? extends CFType>) l);
   }
   return CFType.Marshaler.toNative(o, flags);
 }