Improve getConstructor/toString javadoc.

This commit is contained in:
levlam 2022-09-08 16:00:55 +03:00
parent bc950bc543
commit 43109ecc96

View File

@ -152,14 +152,18 @@ EOT
$this->addDocumentation(' public abstract int getConstructor();', <<<EOT $this->addDocumentation(' public abstract int getConstructor();', <<<EOT
/** /**
* @return identifier uniquely determining type of the object. * Returns an identifier uniquely determining type of the object.
*
* @return a unique identifier of the object type.
*/ */
EOT EOT
); );
$this->addDocumentation(' public native String toString();', <<<EOT $this->addDocumentation(' public native String toString();', <<<EOT
/** /**
* @return string representation of the object. * Returns a string representation of the object.
*
* @return a string representation of the object.
*/ */
EOT EOT
); );