change the tag when there are several conditions in a method
authorMinkyoung Kang <mklove.kang@samsung.com>
Wed, 3 Jul 2013 07:09:01 +0000 (16:09 +0900)
committerMinkyoung Kang <mklove.kang@samsung.com>
Wed, 3 Jul 2013 07:09:01 +0000 (16:09 +0900)
Change-Id: Ifefb738afbd134d7b923e25849bfc56e50cae336

inc/FIoDatabase.h
inc/FIoFile.h
inc/FIoRegistry.h
inc/FSysBattery.h

index 12ee483..abbbf6d 100644 (file)
@@ -290,7 +290,7 @@ public:
        virtual ~Database(void);
 
        /**
-       * @if OSPDEPREC
+       * @cond OSPDEPREC
        * Initializes this instance of %Database with the specified parameters. @n
        * This method creates a new database file or opens an existing database file in the read-write mode.
        *
@@ -331,12 +331,12 @@ public:
        * @remarks      To open the database file in the read-only mode,
        *                       use the Database::Construct(const Tizen::Base::String& dbPath, const char* pOpenMode) method
        *                       with "r" as the value for the open mode flag.
-       * @endif
+       * @endcond
        */
        result Construct(const Tizen::Base::String& dbPath, bool createIfNotExist);
 
        /**
-       * @if OSPDEPREC
+       * @cond OSPDEPREC
        * Initializes this instance of %Database with the specified parameters. @n
        * This method creates a new database file or opens an existing database file in the read-only or the read-write mode.
        *
@@ -373,7 +373,7 @@ public:
        *                                                                               - The method has failed to open or create a file. @n
        *                                                                               - An unexpected device failure has occurred as the media ejected suddenly. @n
        *                                                                               - %File corruption is detected.
-       * @endif
+       * @endcond
        */
        result Construct(const Tizen::Base::String& dbPath, long openMode, long option);
 
index 1758eef..246e447 100644 (file)
@@ -215,7 +215,7 @@ public:
        virtual ~File(void);
 
        /**
-       * @if OSPDEPREC
+       * @cond OSPDEPREC
        * Initializes this instance of %File with the specified parameters. @n
        * This method opens an existing file or creates a new one according to the specified file opening mode.
        *
@@ -263,7 +263,7 @@ public:
        * @remarks              The following file opening mode strings are recognized by this method: "w+", "wb+", "w+b", "w", "wb", "a+",
        *                               "ab+", "a+b", "a", "ab", "r+", "rb+", "r+b", "r", "rb". @n
        *                               Other strings lead to E_INVALID_ARG. However, "b"(binary) open mode is ignored internally.
-       * @endif
+       * @endcond
        */
        result Construct(const Tizen::Base::String& filePath, const Tizen::Base::String& openMode, bool createParentDirectories);
 
index 978a45d..394c7e6 100644 (file)
@@ -162,7 +162,7 @@ public:
        virtual ~Registry(void);
 
        /**
-       * @if OSPDEPREC
+       * @cond OSPDEPREC
        * Initializes this instance of %Registry with the specified parameters. @n
        * This method loads a registry file in the read-write mode.
        *
@@ -200,12 +200,12 @@ public:
        * @exception    E_PARSING_FAILED                The method has failed to parse the registry file.
        * @remarks              To load the registry in read-only mode, use the Registry::Construct(const Tizen::Base::String& regPath,
        *               long openMode, long option) method with REG_OPEN_READ_ONLY as a value for the open mode flag.
-       * @endif
+       * @endcond
        */
        result Construct(const Tizen::Base::String& regPath, bool createIfNotExist);
 
        /**
-       * @if OSPDEPREC
+       * @cond OSPDEPREC
        * Initializes this instance of %Registry with the specified parameters. @n
        * This method loads a registry file in the read-only or the read-write mode.
        *
@@ -246,7 +246,7 @@ public:
        *                                                                               - %File corruption is detected.
        * @exception    E_INVALID_FORMAT                The input registry file contains '0x00' in the middle of the file.
        * @exception    E_PARSING_FAILED                The method has failed to parse the registry file.
-       * @endif
+       * @endcond
        */
        result Construct(const Tizen::Base::String& regPath, long openMode, long option);
 
index 8a77362..7cc8b14 100644 (file)
@@ -56,7 +56,7 @@ class _OSP_EXPORT_ Battery
 
 public:
        /**
-        * @if OSPDEPREC
+        * @cond OSPDEPREC
         * Gets the current charge remaining in the battery as a percentage.
         *
         * @deprecated  This method is deprecated. Instead of using this method, use the PowerManager::GetCurrentBatteryLevelInPercentage() method.
@@ -72,7 +72,7 @@ public:
         * @exception   E_INVALID_STATE The battery service is not available.
         * @exception   E_SYSTEM        The method cannot proceed due to a severe system error.
         * @remarks The resolution of the level is @c 1% since 2.0. The range of the level is @c 0 (Minimum) to @c 100 (Maximum).
-        * @endif
+        * @endcond
         */
        static result GetCurrentLevelInPercentage(int& level);
 
@@ -92,7 +92,7 @@ public:
         */
 
        /**
-        * @if OSPDEPREC
+        * @cond OSPDEPREC
         * Gets the current charging level of the battery.
         *
         * @deprecated  This method is deprecated. Instead of using this method, use the PowerManager::GetCurrentBatteryLevel() method.
@@ -107,7 +107,7 @@ public:
         * @exception   E_SUCCESS       The method is successful.
         * @exception   E_INVALID_STATE The battery service is not available.
         * @exception   E_SYSTEM        The method cannot proceed due to a severe system error.
-        * @endif
+        * @endcond
         */
        static result GetCurrentLevel(BatteryLevel& level);
 
@@ -127,7 +127,7 @@ public:
         */
 
        /**
-        * @if OSPDEPREC
+        * @cond OSPDEPREC
         * Checks whether the battery is currently charging.
         *
         * @deprecated  This method is deprecated. Instead of using this method, use the PowerManager::IsCharging() method.
@@ -143,7 +143,7 @@ public:
         * @exception   E_SUCCESS       The method is successful.
         * @exception   E_INVALID_STATE The battery service is not available.
         * @exception   E_SYSTEM        The method cannot proceed due to a severe system error.
-        * @endif
+        * @endcond
         */
        static result IsCharging(bool& charging);