在Eclipse PDT中,是否可以配置内容辅助以查找替代标签以建议PHP类型?

时间:2014-09-02 19:13:32

标签: php eclipse phpdoc eclipse-pdt content-assist

我正在开发一个使用Lithium(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标记中的信息用作内容辅助目的的类名?

1 个答案:

答案 0 :(得分:0)

没有自己的插件是不可能的。 @see标签只能用于链接。