javaextensions/pim/javasrc/javax/microedition/pim/PIM.java
changeset 76 4ad59aaee882
parent 21 2a9601315dfc
child 83 26b2b12093af
--- a/javaextensions/pim/javasrc/javax/microedition/pim/PIM.java	Thu Sep 02 20:20:40 2010 +0300
+++ b/javaextensions/pim/javasrc/javax/microedition/pim/PIM.java	Fri Sep 17 08:28:21 2010 +0300
@@ -80,20 +80,63 @@
     {
     }
 
+    /**
+     * @param aPimListType which list user want to open Ex.CONTACT_LIST, EVENT_LIST, or TODO_LIST.
+     * @param aMode list open mode  READ_ONLY or  WRITE_ONLY or READ_WRITE
+     * @return PIMList
+     * @throws javax.microedition.pim.PIMException
+     */
     public abstract PIMList openPIMList(int aPimListType, int aMode)
     throws PIMException;
 
+    /**
+     *
+     * @param aPimListType aPimListType which list user want to open Ex.CONTACT_LIST, EVENT_LIST, or TODO_LIST.
+     * @param aMode list open mode  READ_ONLY or  WRITE_ONLY or READ_WRITE
+     * @param aName List name
+     * @return  PIMList
+     * @throws javax.microedition.pim.PIMException
+     */
     public abstract PIMList openPIMList(int aPimListType, int aMode,
                                         String aName) throws PIMException;
 
+    /**
+     *
+     * @param aPimListType  aPimListType which list user want to open Ex.CONTACT_LIST, EVENT_LIST, or TODO_LIST.
+     * @return String which contains list of PIMList names
+     */
     public abstract String[] listPIMLists(int aPimListType);
 
+    /**
+     * @param aIs an inputstream object containing PIM information
+     * @param aEnc encoding of the characters in the input stream
+     * @return PIMItem Array
+     * @throws javax.microedition.pim.PIMException
+     * @throws java.io.UnsupportedEncodingException
+     */
     public abstract PIMItem[] fromSerialFormat(java.io.InputStream aIs,
             String aEnc) throws PIMException, UnsupportedEncodingException;
 
+    /**
+     *
+     * @param aItem the item to export
+     * @param aOs the OutputStream object that where is written to as a character stream.
+     * @param aEnc  encoding of the characters in the input stream
+     * @param aDataFormat PIM data format to use
+     * @throws javax.microedition.pim.PIMException
+     * @throws java.io.UnsupportedEncodingException
+     */
     public abstract void toSerialFormat(PIMItem aItem,
                                         java.io.OutputStream aOs, String aEnc, String aDataFormat)
     throws PIMException, UnsupportedEncodingException;
 
+    /**
+     *
+     * @param aPimListType which list user want to open Ex.CONTACT_LIST, EVENT_LIST, or TODO_LIST.
+     * @return String object
+     */
     public abstract String[] supportedSerialFormats(int aPimListType);
+
+
+
 }