All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.apple.alpha.core.PPL

java.lang.Object
   |
   +----com.apple.alpha.core.NativeObject
           |
           +----com.apple.alpha.core.PPL

public class PPL
extends NativeObject
This class wraps the Objective-C class NSPPL.


Constructor Index

 o PPL()
This default constructor is equivalent to Objective-C's [[NSPPL alloc] init].
 o PPL(boolean, int)
Protected constructor used by the bridge to wrap an Objective-C object.
 o PPL(String, boolean, boolean)
This constructor has the same effect as calling - initWithPath:create:readOnly: on a newly allocated object.
 o PPL(String, Data, boolean)
This constructor has the same effect as calling - initWithPath:fromPPLData:readOnly: on a newly allocated object.

Method Index

 o contentsAsData()
A wrapper for the - contentsAsData Objective-C instance method.
 o detachFromFile()
A wrapper for the - detachFromFile Objective-C instance method.
 o flush()
A wrapper for the - flush Objective-C instance method.
 o pplWithPath(String, boolean, boolean)
A wrapper for the + pplWithPath:create:readOnly: Objective-C class method.
 o pplWithPathFromPPLData(String, Data, boolean)
A wrapper for the + pplWithPath:fromPPLData:readOnly: Objective-C class method.
 o propertyListWithPPLData(Data)
A wrapper for the + propertyListWithPPLData: Objective-C class method.
 o pushChangesToDisk()
A wrapper for the - pushChangesToDisk Objective-C instance method.
 o rootDictionary()
A wrapper for the - rootDictionary Objective-C instance method.
 o save()
A wrapper for the - save Objective-C instance method.
 o setCacheHalfLife(double)
A wrapper for the - setCacheHalfLife: Objective-C instance method.

Constructors

 o PPL
 protected PPL(boolean shouldAllocate,
               int objcObject)
Protected constructor used by the bridge to wrap an Objective-C object. It should never be invoked directly.

 o PPL
 public PPL()
This default constructor is equivalent to Objective-C's [[NSPPL alloc] init].

 o PPL
 public PPL(String path,
            boolean create,
            boolean readOnly)
This constructor has the same effect as calling - initWithPath:create:readOnly: on a newly allocated object.

 o PPL
 public PPL(String path,
            Data pplData,
            boolean readOnly)
This constructor has the same effect as calling - initWithPath:fromPPLData:readOnly: on a newly allocated object.

Methods

 o pplWithPath
 public static native Object pplWithPath(String path,
                                         boolean create,
                                         boolean readOnly)
A wrapper for the + pplWithPath:create:readOnly: Objective-C class method.

 o pplWithPathFromPPLData
 public static native Object pplWithPathFromPPLData(String path,
                                                    Data pplData,
                                                    boolean readOnly)
A wrapper for the + pplWithPath:fromPPLData:readOnly: Objective-C class method.

 o propertyListWithPPLData
 public static native Dictionary propertyListWithPPLData(Data pplData)
A wrapper for the + propertyListWithPPLData: Objective-C class method.

 o contentsAsData
 public native Data contentsAsData()
A wrapper for the - contentsAsData Objective-C instance method.

 o rootDictionary
 public native MutableDictionary rootDictionary()
A wrapper for the - rootDictionary Objective-C instance method.

 o detachFromFile
 public native void detachFromFile()
A wrapper for the - detachFromFile Objective-C instance method.

 o flush
 public native void flush()
A wrapper for the - flush Objective-C instance method.

 o pushChangesToDisk
 public native void pushChangesToDisk()
A wrapper for the - pushChangesToDisk Objective-C instance method.

 o save
 public native void save()
A wrapper for the - save Objective-C instance method.

 o setCacheHalfLife
 public native void setCacheHalfLife(double halfLife)
A wrapper for the - setCacheHalfLife: Objective-C instance method.


All Packages  Class Hierarchy  This Package  Previous  Next  Index