Just adding, since I posted this answer, I switched to PhpStorm, which now has Doctrine annotation support , using a plugin that parses annotation classes directly, so thereβs no need to add annotations manually.
I do not know the addon, but I know a way to add new types of docblocks.
To do this, follow these steps: Open Eclipse PDT, go to the settings dialog (windows β preferences) and open the PHP templates section, see Image:

Click Create, then change the context to phpcomment and add the code. To add variables, just use the wrapper $ {}.
Column annotation example:
name: @Column Pattern: @Column(name="${name}", type="${type}")
If someone does this for all Doctrine2 annotations and wants to share it with us, we will be very happy. :)
source share