在EclipsePDT中,是否可以配置内容辅助来寻找建议PHP类型的替代标记


In the Eclipse PDT, is it possible to configure content assist to look for alternative tags to suggest PHP types?

我正在进行一个使用锂的项目(http://li3.me/)框架,他们这样记录自己的类:

class Controller extends 'lithium'core'Object {
    /**
     * Contains an instance of the `Request` object with all the details of the HTTP request that
     * was dispatched to the controller object. Any parameters captured in routing, such as
     * controller or action name are accessible as properties of this object, i.e.
     * `$this->request->controller` or `$this->request->action`.
     *
     * @see lithium'action'Request
     * @var object
     */
    public $request = null;

我一直在@var中使用完全限定的类名,Eclipse似乎在生成内容辅助方面做得很好。然而,它们似乎使用@see标记来记录类名,并且内容辅助不可用。是否有一种方法可以将PDT配置为将@see标记中的信息用作内容辅助的类名?

没有自己的插件是不可能的@see标记应仅用于链接。