-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathNSCoderExtensions.java
72 lines (59 loc) · 2.62 KB
/
NSCoderExtensions.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
package apple.uikit;
import java.io.*;
import java.nio.*;
import java.util.*;
import com.google.j2objc.annotations.*;
import com.google.j2objc.runtime.*;
import com.google.j2objc.runtime.block.*;
import apple.audiotoolbox.*;
import apple.corefoundation.*;
import apple.coregraphics.*;
import apple.coreservices.*;
import apple.foundation.*;
import apple.coreanimation.*;
import apple.coredata.*;
import apple.coreimage.*;
import apple.coretext.*;
import apple.corelocation.*;
/*<javadoc>*/
/*</javadoc>*/
@Library("UIKit/UIKit.h") @Mapping("NSCoder")
public final class NSCoderExtensions
extends NSExtensions
{
private NSCoderExtensions() {}
@ExtensionMapping("encodeCGPoint:forKey:")
public static native void encodeCGPoint(NSCoder thiz, CGPoint point, String key);
@ExtensionMapping("encodeCGVector:forKey:")
public static native void encodeCGVector(NSCoder thiz, CGVector vector, String key);
@ExtensionMapping("encodeCGSize:forKey:")
public static native void encodeCGSize(NSCoder thiz, CGSize size, String key);
@ExtensionMapping("encodeCGRect:forKey:")
public static native void encodeCGRect(NSCoder thiz, CGRect rect, String key);
@ExtensionMapping("encodeCGAffineTransform:forKey:")
public static native void encodeCGAffineTransform(NSCoder thiz, CGAffineTransform transform, String key);
@ExtensionMapping("encodeUIEdgeInsets:forKey:")
public static native void encodeUIEdgeInsets(NSCoder thiz, UIEdgeInsets insets, String key);
/**
* @since Available in iOS 5.0 and later.
*/
@ExtensionMapping("encodeUIOffset:forKey:")
public static native void encodeUIOffset(NSCoder thiz, UIOffset offset, String key);
@ExtensionMapping("decodeCGPointForKey:")
public static native CGPoint decodeCGPoint(NSCoder thiz, String key);
@ExtensionMapping("decodeCGVectorForKey:")
public static native CGVector decodeCGVector(NSCoder thiz, String key);
@ExtensionMapping("decodeCGSizeForKey:")
public static native CGSize decodeCGSize(NSCoder thiz, String key);
@ExtensionMapping("decodeCGRectForKey:")
public static native CGRect decodeCGRect(NSCoder thiz, String key);
@ExtensionMapping("decodeCGAffineTransformForKey:")
public static native CGAffineTransform decodeCGAffineTransform(NSCoder thiz, String key);
@ExtensionMapping("decodeUIEdgeInsetsForKey:")
public static native UIEdgeInsets decodeUIEdgeInsets(NSCoder thiz, String key);
/**
* @since Available in iOS 5.0 and later.
*/
@ExtensionMapping("decodeUIOffsetForKey:")
public static native UIOffset decodeUIOffset(NSCoder thiz, String key);
}