[ 
https://issues.apache.org/jira/browse/NETBEANS-3413?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17073499#comment-17073499
 ] 

Christian Naitsirch commented on NETBEANS-3413:
-----------------------------------------------

{quote}Currently NetBeans IDE supports inheritance of docblocks containing 
@inheritdoc annotation.
{quote}
Are you sure this is working in NB 11.2?

I have those two classes:
{code:java}
class BaseAdminController
{
    /**
     * Creates the form used to edit an entity.
     *
     * @param object $entity
     * @param array  $entityProperties
     *
     * @return Form
     */
    protected function createEditForm($entity, array $entityProperties) {}
}

class AdminController extends BaseAdminController
{
    /**
     * {@inheritDoc}
     */
    protected function createEditForm($entity, array $entityProperties) {}
}
{code}
 

 

But when I enter `{color:#ff8b00}$this->createE{color}` into a method of a 
class that inherits from {color:#ff8b00}AdminController{color} this is shown:

 

!image-2020-04-02-10-21-00-087.png!

 

So it looks like `{color:#ff8b00}{@inheritDoc}{color}` is not supported yet. Or 
do I have to enable it explicitly?

> PHPDoc - implicit description inheritance
> -----------------------------------------
>
>                 Key: NETBEANS-3413
>                 URL: https://issues.apache.org/jira/browse/NETBEANS-3413
>             Project: NetBeans
>          Issue Type: Improvement
>          Components: php - Editor
>    Affects Versions: 11.2
>            Reporter: Tomáš Procházka
>            Priority: Major
>         Attachments: image-2020-04-02-10-21-00-087.png
>
>
> Currently NetBeans IDE supports inheritance of docblocks containing 
> @inheritdoc annotation.
> It would be useful if docblocks are inherited even in case when there is no 
> docblock present.
> Example:
> {code:java}
> class Circle {
>     /**
>      * Hides circle
>      */
>     public function hide() {        
>     }
>     /**
>      * Shows circle
>      */
>     public function show() {
>     }
> }
> class SpecialCircle extends Circle {
>     /**
>      * {@inheritdoc}
>      */
>     public function hide() {
>         parent::hide();
>     }
>     public function show() {
>         parent::show();
>     }
>     public function redraw() {
>         $this->hide(); // Text "Hides circle" is shown
>         $this->show(); // Text "PHPDoc not found" is shown, expected "Shows 
> circle"
>     }
> }
> {code}
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists

Reply via email to