Applied reviewed header(DateTime to Uuid)
[platform/framework/native/appfw.git] / inc / FBaseUtilZipEntry.h
index bc871d2..24f5139 100644 (file)
@@ -34,7 +34,7 @@ namespace Tizen { namespace Base { namespace Utility
 {
 /**
  * @class      ZipEntry
- * @brief              This class provides access to the entries of a zip-archive.
+ * @brief              This class provides methods to access the entries of a zip-archive.
  *
  * @since 2.0
  *
@@ -105,28 +105,28 @@ public:
        virtual ~ZipEntry(void);
 
        /**
-        * Gets an entry name associated with a zip entry. @n
+        * Gets the entry name associated with the zip entry. @n
         * It can be a file or directory name.
         *
         * @since 2.0
         *
-        * @return              An entry name
+        * @return              The entry name
         *
         */
        String GetName(void) const;
 
        /**
-        * Gets the compression level associated with a zip entry.
+        * Gets the compression level associated with the zip entry.
         *
         * @since 2.0
         *
-        * @return              The compression level associated with a zip entry
+        * @return              The compression level associated with the zip entry
         *
         */
        CompressionLevel GetCompressionLevel(void) const;
 
        /**
-        * Checks whether a zip entry is a file or directory.
+        * Checks whether the zip entry is a file or directory.
         *
         * @since 2.0
         *
@@ -136,42 +136,42 @@ public:
        bool IsDirectory(void) const;
 
        /**
-        * Gets the compressed size of a zip entry.
+        * Gets the compressed size of the zip entry.
         *
         * @since 2.0
         *
-        * @return              The compressed size of a zip entry
+        * @return              The compressed size of the zip entry
         */
        unsigned long GetCompressedSize(void) const;
 
        /**
-        * Gets the uncompressed size of a zip entry.
+        * Gets the uncompressed size of the zip entry.
         *
         * @since 2.0
         *
-        * @return              The uncompressed size of a zip entry
+        * @return              The uncompressed size of the zip entry
         */
        unsigned long GetUncompressedSize(void) const;
 
        /**
-        * Gets the name of a zip file to which %ZipEntry belongs.
+        * Gets the name of the zip file to which %ZipEntry belongs.
         *
         * @since 2.0
         *
-        * @return              The name of a zip file
-        * @remarks     This method returns the name of a zip file that is opened
-        * in the FileUnzipper::Construct() method.
+        * @return              The name of the zip file
+        * @remarks     This method returns the name of the zip file that is opened
+        *                              in the FileUnzipper::Construct() method.
         */
        String GetArchiveName(void) const;
 
        /**
-        * Compares the specified instance to the calling instance.
+        * Compares the specified instance to the current instance.
         *
         * @since 2.0
         *
         * @return              @c true if the specified instance equals the current instance, @n
         *                              else @c false
-        * @param[in]   obj     The object to compare with the current instance
+        * @param[in]   obj             The object to compare with the current instance
         * @remarks     This method returns @c true if all the attributes in the instance are same.
         */
        virtual bool Equals(const Tizen::Base::Object& obj) const;