树像eclipse中的自动完成

时间:2016-09-27 14:08:40

标签: php eclipse autocomplete

我对eclipse中的自动完成有疑问。因为我创建了一个具有树状结构的系统,例如:

{"user": {
    _class: "table"
    "firstname": {}
    "lastname": {}
    "logins": {
        "date": {},
    }
}}

此结构如何为自动完成系统创建上下文。这是一些示例代码,搞乱了自动完成的一部分...... :( 我真的希望这个能够发挥作用!

/**
* This code will return a object. in this case a text_read object but it can 
be different depending on what the system logic does.
**/
function getObject () {
    $type = "text"
    $className = $type . "_read";

    $object = new $className;

    return $object
}

我接下来的问题是,一个类动态地创建属性,它通过一个getter函数返回。

class tmp {
    private $a = array(
        "firstname" => "Pietje"
    ); //this array is filled dynamicly in the constructor in production code
    public function _getField ($name) {
        return $this->a[$name];
    }
}

喜欢听到你的消息!

0 个答案:

没有答案