{
public:
/**
- * The object is not fully constructed after this constructor is called. For full construction, the Construct() method must be called right after calling this constructor.
+ * The object is not fully constructed after this constructor is called. @n
+ * For full construction, the Construct() method must be called right after calling this constructor.
*
* @since 2.0
*/
virtual result IndexOf(IJsonValue* const& pJsonValue, int& index) const;
/**
- * Searches for an element starting from the specified index. @n
+ * Searches for an element starting from the specified @c index. @n
* Gets the index of the element if it is found.
*
* @since 2.0
* @return @c true if value of the current instance equals to value of the specified instance, @n
* else @c false @n
* @param[in] obj The element to be compared with the current instance of %JsonArray @n
- * If the specified @c obj is not %JsonArray, this method returns @c false.
+ * If the specified object is not %JsonArray, this method returns @c false.
* @see Tizen::Base::Object::Equals()
*/
virtual bool Equals(const Object& obj) const;
* @return @c true if the value of the current instance equals the value of the specified instance, @n
* else @c false
* @param[in] obj The object to compare with the current instance of %JsonNull @n
- * The method returns @c false if the specified @c obj is not %JsonNull.
+ * If the specified object is not %JsonNull, this method returns @c false.
* @see Tizen::Base::Object::Equals()
*/
virtual bool Equals(const Object& obj) const;
{
public:
/**
- * The object is not fully constructed after this constructor is called. For full construction, the Construct() method must be called right after calling this constructor.
+ * The object is not fully constructed after this constructor is called. @n
+ * For full construction, the Construct() method must be called right after calling this constructor.
*
* @since 2.0
*/
else @c false
* @param[in] obj The object to compare @n
* This object is compared with the current instance of %JsonObject. @n
- * This method returns @c false if the specified @c obj is not of type JSON object.
+ * If the specified object is not of type JSON object, this method returns @c false.
* @see Tizen::Base::Object::Equals()
*/
virtual bool Equals(const Object& obj) const;
* @param[in] pBuffer A JSON-encoded buffer
* @param[in] bufferLength A JSON-encoded buffer length
* @exception E_SUCCESS The method is successful.
- * @exception E_INVALID_ARG Either of the following conditions has occurred: @n
- * - The specified @c pBuffer is @c null. @n
- * - The specified bufferLength is zero or negative.
+ * @exception E_INVALID_ARG Either of the following conditions has occurred:
+ * - The specified @c pBuffer is @c null.
+ * - The specified @c bufferLength is zero or negative.
* @exception E_INVALID_DATA The input JSON data is invalid, or the buffer is empty.
* @exception E_MAX_EXCEEDED The input JSON data exceeds the maximum length.
*
* @param[out] pBuffer The buffer with JSON encoded data.
* @return An error code
* @exception E_SUCCESS The method is successful.
- * @exception E_INVALID_ARG Either of the following conditions has occurred: @n
- * - The specified @c pBuffer is @c null. @n
+ * @exception E_INVALID_ARG Either of the following conditions has occurred:
+ * - The specified @c pBuffer is @c null.
* - The specified bufferLength is negative.
* @exception E_INVALID_DATA The specified @c pValue is @c null.
*/
*
* @param[in] pValue JSON value to be encoded.
* @param[out] buffer The buffer with JSON-encoded data @n
- * The specified @c buffer has to be constructed with a non-zero capacity before calling this method.
+ * The specified buffer has to be constructed with a non-zero capacity before calling this method.
* @return An error code
* @exception E_SUCCESS The method is successful.
* @exception E_INVALID_DATA The specified @c pValue is @c null.