Package com.sun.jna.platform.mac
Class CoreFoundation.CFMutableDictionaryRef
- java.lang.Object
-
- com.sun.jna.PointerType
-
- com.sun.jna.platform.mac.CoreFoundation.CFTypeRef
-
- com.sun.jna.platform.mac.CoreFoundation.CFDictionaryRef
-
- com.sun.jna.platform.mac.CoreFoundation.CFMutableDictionaryRef
-
- All Implemented Interfaces:
NativeMapped
- Enclosing interface:
- CoreFoundation
public static class CoreFoundation.CFMutableDictionaryRef extends CoreFoundation.CFDictionaryRef
A reference to a mutableCFDictionary
object.
-
-
Constructor Summary
Constructors Constructor Description CFMutableDictionaryRef()
CFMutableDictionaryRef(Pointer p)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
setValue(PointerType key, PointerType value)
Convenience method forCoreFoundation.CFDictionarySetValue(com.sun.jna.platform.mac.CoreFoundation.CFMutableDictionaryRef, com.sun.jna.PointerType, com.sun.jna.PointerType)
on this object.-
Methods inherited from class com.sun.jna.platform.mac.CoreFoundation.CFDictionaryRef
getValue, getValueIfPresent
-
Methods inherited from class com.sun.jna.platform.mac.CoreFoundation.CFTypeRef
getTypeID, isTypeID, release, retain
-
Methods inherited from class com.sun.jna.PointerType
equals, fromNative, getPointer, hashCode, nativeType, setPointer, toNative, toString
-
-
-
-
Constructor Detail
-
CFMutableDictionaryRef
public CFMutableDictionaryRef()
-
CFMutableDictionaryRef
public CFMutableDictionaryRef(Pointer p)
-
-
Method Detail
-
setValue
public void setValue(PointerType key, PointerType value)
Convenience method forCoreFoundation.CFDictionarySetValue(com.sun.jna.platform.mac.CoreFoundation.CFMutableDictionaryRef, com.sun.jna.PointerType, com.sun.jna.PointerType)
on this object.- Parameters:
key
- The key of the value to set.value
- The value to add to or replace .
-
-