org.rococoa.cocoa.foundation.categories
Interface NSExtendedCoder

All Superinterfaces:
ObjCObject

public interface NSExtendedCoder
extends ObjCObject

This file was autogenerated by JNAerator,
a tool written by Olivier Chafik that uses a few opensource projects..
For help, please visit NativeLibs4Java, Rococoa, or JNA.


Nested Class Summary
static interface NSExtendedCoder._static_
           
 
Method Summary
 boolean allowsKeyedCoding()
          Original signature : -(BOOL)allowsKeyedCoding
from NSExtendedCoder native declaration : NSCoder.h:47
 boolean containsValueForKey(NSString key)
          Original signature : -(BOOL)containsValueForKey:(NSString*)
from NSExtendedCoder native declaration : NSCoder.h:59
 void decodeArrayOfObjCType_count_at(Pointer itemType, NSUInteger count, Pointer array)
          Deprecated. use the safer methods decodeArrayOfObjCType_count_at(java.lang.String, org.rococoa.cocoa.foundation.NSUInteger, com.sun.jna.Pointer) and decodeArrayOfObjCType_count_at(com.sun.jna.Pointer, org.rococoa.cocoa.foundation.NSUInteger, com.sun.jna.Pointer) instead
 void decodeArrayOfObjCType_count_at(String itemType, NSUInteger count, Pointer array)
          Original signature : -(void)decodeArrayOfObjCType:(const char*) count:(NSUInteger) at:(void*)
from NSExtendedCoder native declaration : NSCoder.h:33
 boolean decodeBoolForKey(NSString key)
          Original signature : -(BOOL)decodeBoolForKey:(NSString*)
from NSExtendedCoder native declaration : NSCoder.h:61
 Pointer decodeBytesForKey_returnedLength(NSString key, NativeSizeByReference lengthp)
          returned bytes immutable!
 Pointer decodeBytesWithReturnedLength(NativeSizeByReference lengthp)
          Original signature : -(void*)decodeBytesWithReturnedLength:(NSUInteger*)
from NSExtendedCoder native declaration : NSCoder.h:34
 double decodeDoubleForKey(NSString key)
          Original signature : -(double)decodeDoubleForKey:(NSString*)
from NSExtendedCoder native declaration : NSCoder.h:66
 float decodeFloatForKey(NSString key)
          Original signature : -(float)decodeFloatForKey:(NSString*)
from NSExtendedCoder native declaration : NSCoder.h:65
 int decodeInt32ForKey(NSString key)
          Original signature : -(int32_t)decodeInt32ForKey:(NSString*)
from NSExtendedCoder native declaration : NSCoder.h:63
 long decodeInt64ForKey(NSString key)
          Original signature : -(int64_t)decodeInt64ForKey:(NSString*)
from NSExtendedCoder native declaration : NSCoder.h:64
 NSInteger decodeIntegerForKey(NSString key)
          Original signature : -(NSInteger)decodeIntegerForKey:(NSString*)
from NSExtendedCoder native declaration : NSCoder.h:72
 int decodeIntForKey(NSString key)
          Original signature : -(int)decodeIntForKey:(NSString*)
from NSExtendedCoder native declaration : NSCoder.h:62
 NSObject decodeObject()
          Original signature : -(id)decodeObject
from NSExtendedCoder native declaration : NSCoder.h:31
 NSObject decodeObjectForKey(NSString key)
          Original signature : -(id)decodeObjectForKey:(NSString*)
from NSExtendedCoder native declaration : NSCoder.h:60
 NSObject decodePropertyList()
          Original signature : -(id)decodePropertyList
from NSExtendedCoder native declaration : NSCoder.h:38
 void decodeValuesOfObjCTypes(Pointer types, NSObject... varargs)
          Deprecated. use the safer methods #decodeValuesOfObjCTypes(java.lang.String, org.rococoa.cocoa.foundation.NSObject) and #decodeValuesOfObjCTypes(com.sun.jna.Pointer, org.rococoa.cocoa.foundation.NSObject) instead
 void decodeValuesOfObjCTypes(String types, NSObject... varargs)
          Original signature : -(void)decodeValuesOfObjCTypes:(const char*), ...
 void encodeArrayOfObjCType_count_at(Pointer type, NSUInteger count, Pointer array)
          Deprecated. use the safer methods encodeArrayOfObjCType_count_at(java.lang.String, org.rococoa.cocoa.foundation.NSUInteger, com.sun.jna.Pointer) and encodeArrayOfObjCType_count_at(com.sun.jna.Pointer, org.rococoa.cocoa.foundation.NSUInteger, com.sun.jna.Pointer) instead
 void encodeArrayOfObjCType_count_at(String type, NSUInteger count, Pointer array)
          Original signature : -(void)encodeArrayOfObjCType:(const char*) count:(NSUInteger) at:(const void*)
from NSExtendedCoder native declaration : NSCoder.h:28
 void encodeBool_forKey(boolean boolv, NSString key)
          Original signature : -(void)encodeBool:(BOOL) forKey:(NSString*)
from NSExtendedCoder native declaration : NSCoder.h:51
 void encodeBycopyObject(ObjCObject anObject)
          Original signature : -(void)encodeBycopyObject:(id)
from NSExtendedCoder native declaration : NSCoder.h:24
 void encodeByrefObject(ObjCObject anObject)
          Original signature : -(void)encodeByrefObject:(id)
from NSExtendedCoder native declaration : NSCoder.h:25
 void encodeBytes_length_forKey(byte[] bytesp, NSUInteger lenv, NSString key)
          Original signature : -(void)encodeBytes:(const uint8_t*) length:(NSUInteger) forKey:(NSString*)
from NSExtendedCoder native declaration : NSCoder.h:57
 void encodeBytes_length_forKey(Pointer bytesp, NSUInteger lenv, NSString key)
          Deprecated. use the safer methods encodeBytes_length_forKey(byte[], org.rococoa.cocoa.foundation.NSUInteger, org.rococoa.cocoa.foundation.NSString) and encodeBytes_length_forKey(com.sun.jna.Pointer, org.rococoa.cocoa.foundation.NSUInteger, org.rococoa.cocoa.foundation.NSString) instead
 void encodeBytes_length(Pointer byteaddr, NSUInteger length)
          Original signature : -(void)encodeBytes:(const void*) length:(NSUInteger)
from NSExtendedCoder native declaration : NSCoder.h:29
 void encodeConditionalObject_forKey(ObjCObject objv, NSString key)
          Original signature : -(void)encodeConditionalObject:(id) forKey:(NSString*)
from NSExtendedCoder native declaration : NSCoder.h:50
 void encodeConditionalObject(ObjCObject object)
          Original signature : -(void)encodeConditionalObject:(id)
from NSExtendedCoder native declaration : NSCoder.h:26
 void encodeDouble_forKey(double realv, NSString key)
          Original signature : -(void)encodeDouble:(double) forKey:(NSString*)
from NSExtendedCoder native declaration : NSCoder.h:56
 void encodeFloat_forKey(float realv, NSString key)
          Original signature : -(void)encodeFloat:(float) forKey:(NSString*)
from NSExtendedCoder native declaration : NSCoder.h:55
 void encodeInt_forKey(int intv, NSString key)
          Original signature : -(void)encodeInt:(int) forKey:(NSString*)
from NSExtendedCoder native declaration : NSCoder.h:52
 void encodeInt32_forKey(int intv, NSString key)
          Original signature : -(void)encodeInt32:(int32_t) forKey:(NSString*)
from NSExtendedCoder native declaration : NSCoder.h:53
 void encodeInt64_forKey(long intv, NSString key)
          Original signature : -(void)encodeInt64:(int64_t) forKey:(NSString*)
from NSExtendedCoder native declaration : NSCoder.h:54
 void encodeInteger_forKey(NSInteger intv, NSString key)
          Original signature : -(void)encodeInteger:(NSInteger) forKey:(NSString*)
from NSExtendedCoder native declaration : NSCoder.h:71
 void encodeObject_forKey(ObjCObject objv, NSString key)
          Original signature : -(void)encodeObject:(id) forKey:(NSString*)
from NSExtendedCoder native declaration : NSCoder.h:49
 void encodeObject(ObjCObject object)
          Original signature : -(void)encodeObject:(id)
from NSExtendedCoder native declaration : NSCoder.h:22
 void encodePropertyList(ObjCObject aPropertyList)
          Original signature : -(void)encodePropertyList:(id)
from NSExtendedCoder native declaration : NSCoder.h:37
 void encodeRootObject(ObjCObject rootObject)
          Original signature : -(void)encodeRootObject:(id)
from NSExtendedCoder native declaration : NSCoder.h:23
 void encodeValuesOfObjCTypes(Pointer types, NSObject... varargs)
          Deprecated. use the safer methods #encodeValuesOfObjCTypes(java.lang.String, org.rococoa.cocoa.foundation.NSObject) and #encodeValuesOfObjCTypes(com.sun.jna.Pointer, org.rococoa.cocoa.foundation.NSObject) instead
 void encodeValuesOfObjCTypes(String types, NSObject... varargs)
          Original signature : -(void)encodeValuesOfObjCTypes:(const char*), ...
 Pointer objectZone()
          Original signature : -(NSZone*)objectZone
from NSExtendedCoder native declaration : NSCoder.h:42
 void setObjectZone(Pointer zone)
          Original signature : -(void)setObjectZone:(NSZone*)
from NSExtendedCoder native declaration : NSCoder.h:41
 int systemVersion()
          Original signature : -(unsigned)systemVersion
from NSExtendedCoder native declaration : NSCoder.h:44
 
Methods inherited from interface org.rococoa.ObjCObject
id
 

Method Detail

encodeObject

void encodeObject(ObjCObject object)
Original signature : -(void)encodeObject:(id)
from NSExtendedCoder native declaration : NSCoder.h:22


encodeRootObject

void encodeRootObject(ObjCObject rootObject)
Original signature : -(void)encodeRootObject:(id)
from NSExtendedCoder native declaration : NSCoder.h:23


encodeBycopyObject

void encodeBycopyObject(ObjCObject anObject)
Original signature : -(void)encodeBycopyObject:(id)
from NSExtendedCoder native declaration : NSCoder.h:24


encodeByrefObject

void encodeByrefObject(ObjCObject anObject)
Original signature : -(void)encodeByrefObject:(id)
from NSExtendedCoder native declaration : NSCoder.h:25


encodeConditionalObject

void encodeConditionalObject(ObjCObject object)
Original signature : -(void)encodeConditionalObject:(id)
from NSExtendedCoder native declaration : NSCoder.h:26


encodeValuesOfObjCTypes

@Deprecated
void encodeValuesOfObjCTypes(Pointer types,
                                        NSObject... varargs)
Deprecated. use the safer methods #encodeValuesOfObjCTypes(java.lang.String, org.rococoa.cocoa.foundation.NSObject) and #encodeValuesOfObjCTypes(com.sun.jna.Pointer, org.rococoa.cocoa.foundation.NSObject) instead

Original signature : -(void)encodeValuesOfObjCTypes:(const char*), ...
from NSExtendedCoder native declaration : NSCoder.h:27


encodeValuesOfObjCTypes

void encodeValuesOfObjCTypes(String types,
                             NSObject... varargs)
Original signature : -(void)encodeValuesOfObjCTypes:(const char*), ...
from NSExtendedCoder native declaration : NSCoder.h:27


encodeArrayOfObjCType_count_at

@Deprecated
void encodeArrayOfObjCType_count_at(Pointer type,
                                               NSUInteger count,
                                               Pointer array)
Deprecated. use the safer methods encodeArrayOfObjCType_count_at(java.lang.String, org.rococoa.cocoa.foundation.NSUInteger, com.sun.jna.Pointer) and encodeArrayOfObjCType_count_at(com.sun.jna.Pointer, org.rococoa.cocoa.foundation.NSUInteger, com.sun.jna.Pointer) instead

Original signature : -(void)encodeArrayOfObjCType:(const char*) count:(NSUInteger) at:(const void*)
from NSExtendedCoder native declaration : NSCoder.h:28


encodeArrayOfObjCType_count_at

void encodeArrayOfObjCType_count_at(String type,
                                    NSUInteger count,
                                    Pointer array)
Original signature : -(void)encodeArrayOfObjCType:(const char*) count:(NSUInteger) at:(const void*)
from NSExtendedCoder native declaration : NSCoder.h:28


encodeBytes_length

void encodeBytes_length(Pointer byteaddr,
                        NSUInteger length)
Original signature : -(void)encodeBytes:(const void*) length:(NSUInteger)
from NSExtendedCoder native declaration : NSCoder.h:29


decodeObject

NSObject decodeObject()
Original signature : -(id)decodeObject
from NSExtendedCoder native declaration : NSCoder.h:31


decodeValuesOfObjCTypes

@Deprecated
void decodeValuesOfObjCTypes(Pointer types,
                                        NSObject... varargs)
Deprecated. use the safer methods #decodeValuesOfObjCTypes(java.lang.String, org.rococoa.cocoa.foundation.NSObject) and #decodeValuesOfObjCTypes(com.sun.jna.Pointer, org.rococoa.cocoa.foundation.NSObject) instead

Original signature : -(void)decodeValuesOfObjCTypes:(const char*), ...
from NSExtendedCoder native declaration : NSCoder.h:32


decodeValuesOfObjCTypes

void decodeValuesOfObjCTypes(String types,
                             NSObject... varargs)
Original signature : -(void)decodeValuesOfObjCTypes:(const char*), ...
from NSExtendedCoder native declaration : NSCoder.h:32


decodeArrayOfObjCType_count_at

@Deprecated
void decodeArrayOfObjCType_count_at(Pointer itemType,
                                               NSUInteger count,
                                               Pointer array)
Deprecated. use the safer methods decodeArrayOfObjCType_count_at(java.lang.String, org.rococoa.cocoa.foundation.NSUInteger, com.sun.jna.Pointer) and decodeArrayOfObjCType_count_at(com.sun.jna.Pointer, org.rococoa.cocoa.foundation.NSUInteger, com.sun.jna.Pointer) instead

Original signature : -(void)decodeArrayOfObjCType:(const char*) count:(NSUInteger) at:(void*)
from NSExtendedCoder native declaration : NSCoder.h:33


decodeArrayOfObjCType_count_at

void decodeArrayOfObjCType_count_at(String itemType,
                                    NSUInteger count,
                                    Pointer array)
Original signature : -(void)decodeArrayOfObjCType:(const char*) count:(NSUInteger) at:(void*)
from NSExtendedCoder native declaration : NSCoder.h:33


decodeBytesWithReturnedLength

Pointer decodeBytesWithReturnedLength(NativeSizeByReference lengthp)
Original signature : -(void*)decodeBytesWithReturnedLength:(NSUInteger*)
from NSExtendedCoder native declaration : NSCoder.h:34


encodePropertyList

void encodePropertyList(ObjCObject aPropertyList)
Original signature : -(void)encodePropertyList:(id)
from NSExtendedCoder native declaration : NSCoder.h:37


decodePropertyList

NSObject decodePropertyList()
Original signature : -(id)decodePropertyList
from NSExtendedCoder native declaration : NSCoder.h:38


setObjectZone

void setObjectZone(Pointer zone)
Original signature : -(void)setObjectZone:(NSZone*)
from NSExtendedCoder native declaration : NSCoder.h:41


objectZone

Pointer objectZone()
Original signature : -(NSZone*)objectZone
from NSExtendedCoder native declaration : NSCoder.h:42


systemVersion

int systemVersion()
Original signature : -(unsigned)systemVersion
from NSExtendedCoder native declaration : NSCoder.h:44


allowsKeyedCoding

boolean allowsKeyedCoding()
Original signature : -(BOOL)allowsKeyedCoding
from NSExtendedCoder native declaration : NSCoder.h:47


encodeObject_forKey

void encodeObject_forKey(ObjCObject objv,
                         NSString key)
Original signature : -(void)encodeObject:(id) forKey:(NSString*)
from NSExtendedCoder native declaration : NSCoder.h:49


encodeConditionalObject_forKey

void encodeConditionalObject_forKey(ObjCObject objv,
                                    NSString key)
Original signature : -(void)encodeConditionalObject:(id) forKey:(NSString*)
from NSExtendedCoder native declaration : NSCoder.h:50


encodeBool_forKey

void encodeBool_forKey(boolean boolv,
                       NSString key)
Original signature : -(void)encodeBool:(BOOL) forKey:(NSString*)
from NSExtendedCoder native declaration : NSCoder.h:51


encodeInt_forKey

void encodeInt_forKey(int intv,
                      NSString key)
Original signature : -(void)encodeInt:(int) forKey:(NSString*)
from NSExtendedCoder native declaration : NSCoder.h:52


encodeInt32_forKey

void encodeInt32_forKey(int intv,
                        NSString key)
Original signature : -(void)encodeInt32:(int32_t) forKey:(NSString*)
from NSExtendedCoder native declaration : NSCoder.h:53


encodeInt64_forKey

void encodeInt64_forKey(long intv,
                        NSString key)
Original signature : -(void)encodeInt64:(int64_t) forKey:(NSString*)
from NSExtendedCoder native declaration : NSCoder.h:54


encodeFloat_forKey

void encodeFloat_forKey(float realv,
                        NSString key)
Original signature : -(void)encodeFloat:(float) forKey:(NSString*)
from NSExtendedCoder native declaration : NSCoder.h:55


encodeDouble_forKey

void encodeDouble_forKey(double realv,
                         NSString key)
Original signature : -(void)encodeDouble:(double) forKey:(NSString*)
from NSExtendedCoder native declaration : NSCoder.h:56


encodeBytes_length_forKey

@Deprecated
void encodeBytes_length_forKey(Pointer bytesp,
                                          NSUInteger lenv,
                                          NSString key)
Deprecated. use the safer methods encodeBytes_length_forKey(byte[], org.rococoa.cocoa.foundation.NSUInteger, org.rococoa.cocoa.foundation.NSString) and encodeBytes_length_forKey(com.sun.jna.Pointer, org.rococoa.cocoa.foundation.NSUInteger, org.rococoa.cocoa.foundation.NSString) instead

Original signature : -(void)encodeBytes:(const uint8_t*) length:(NSUInteger) forKey:(NSString*)
from NSExtendedCoder native declaration : NSCoder.h:57


encodeBytes_length_forKey

void encodeBytes_length_forKey(byte[] bytesp,
                               NSUInteger lenv,
                               NSString key)
Original signature : -(void)encodeBytes:(const uint8_t*) length:(NSUInteger) forKey:(NSString*)
from NSExtendedCoder native declaration : NSCoder.h:57


containsValueForKey

boolean containsValueForKey(NSString key)
Original signature : -(BOOL)containsValueForKey:(NSString*)
from NSExtendedCoder native declaration : NSCoder.h:59


decodeObjectForKey

NSObject decodeObjectForKey(NSString key)
Original signature : -(id)decodeObjectForKey:(NSString*)
from NSExtendedCoder native declaration : NSCoder.h:60


decodeBoolForKey

boolean decodeBoolForKey(NSString key)
Original signature : -(BOOL)decodeBoolForKey:(NSString*)
from NSExtendedCoder native declaration : NSCoder.h:61


decodeIntForKey

int decodeIntForKey(NSString key)
Original signature : -(int)decodeIntForKey:(NSString*)
from NSExtendedCoder native declaration : NSCoder.h:62


decodeInt32ForKey

int decodeInt32ForKey(NSString key)
Original signature : -(int32_t)decodeInt32ForKey:(NSString*)
from NSExtendedCoder native declaration : NSCoder.h:63


decodeInt64ForKey

long decodeInt64ForKey(NSString key)
Original signature : -(int64_t)decodeInt64ForKey:(NSString*)
from NSExtendedCoder native declaration : NSCoder.h:64


decodeFloatForKey

float decodeFloatForKey(NSString key)
Original signature : -(float)decodeFloatForKey:(NSString*)
from NSExtendedCoder native declaration : NSCoder.h:65


decodeDoubleForKey

double decodeDoubleForKey(NSString key)
Original signature : -(double)decodeDoubleForKey:(NSString*)
from NSExtendedCoder native declaration : NSCoder.h:66


decodeBytesForKey_returnedLength

Pointer decodeBytesForKey_returnedLength(NSString key,
                                         NativeSizeByReference lengthp)
returned bytes immutable!
Original signature : -(const uint8_t*)decodeBytesForKey:(NSString*) returnedLength:(NSUInteger*)
from NSExtendedCoder native declaration : NSCoder.h:67


encodeInteger_forKey

void encodeInteger_forKey(NSInteger intv,
                          NSString key)
Original signature : -(void)encodeInteger:(NSInteger) forKey:(NSString*)
from NSExtendedCoder native declaration : NSCoder.h:71


decodeIntegerForKey

NSInteger decodeIntegerForKey(NSString key)
Original signature : -(NSInteger)decodeIntegerForKey:(NSString*)
from NSExtendedCoder native declaration : NSCoder.h:72



Copyright © 2009. All Rights Reserved.