我正在使用 eclipse PDT 使用 codeigniter 2 框架和学说 2 作为 ORM 编写一个项目。我想知道是否有办法让自动补全适用于教义 2 实体类(位于 \application\models\Entities 文件夹中的那些)我设法让该工作随便一次,所以我知道这是可能的,现在我想知道如何让它始终工作或我做错了什么。
为了清楚起见,假设我们有这个控制器:
class Main extends My_Controller {
function index() {
$casualAccount = $this->doctrine->em->find('Entities\Account' , 1);
$casualAccount-> **AUTOCOMPLETITION NOT WORKING HERE**
$this->load->view('welcome_message.php');
}
}
我们有这个模型\models\Entities
:
use Doctrine\ORM\Mapping as ORM;
/**
* Entities\Account
*/
class Account
{
/**
* @var integer $id
*/
private $id;
/**
* @var string $Mail
*/
private $Mail;
/**
* @var string $Password
*/
private $Password;
/**
* @var string $Type
*/
private $Type;
/**
* @var string $First_name
*/
private $First_name;
/**
* @var string $Last_name
*/
private $Last_name;
/**
* Get id
*
* @return integer
*/
public function getId()
{
return $this->id;
}
/**
* Set Mail
*
* @param string $mail
* @return Account
*/
public function setMail($mail)
{
$this->Mail = $mail;
return $this;
}
/**
* Get Mail
*
* @return string
*/
public function getMail()
{
return $this->Mail;
}
/**
* Set Password
*
* @param string $password
* @return Account
*/
public function setPassword($password)
{
$this->Password = $password;
return $this;
}
/**
* Get Password
*
* @return string
*/
public function getPassword()
{
return $this->Password;
}
/**
* Set Type
*
* @param string $type
* @return Account
*/
public function setType($type)
{
$this->Type = $type;
return $this;
}
/**
* Get Type
*
* @return string
*/
public function getType()
{
return $this->Type;
}
/**
* Set First_name
*
* @param string $firstName
* @return Account
*/
public function setFirstName($firstName)
{
$this->First_name = $firstName;
return $this;
}
/**
* Get First_name
*
* @return string
*/
public function getFirstName()
{
return $this->First_name;
}
/**
* Set Last_name
*
* @param string $lastName
* @return Account
*/
public function setLastName($lastName)
{
$this->Last_name = $lastName;
return $this;
}
/**
* Get Last_name
*
* @return string
*/
public function getLastName()
{
return $this->Last_name;
}
更新。Manix 的评论有点帮助。可以在类中声明一个变量,告诉它将使用以下语法是什么类:
class Main extends My_Controller {
/**
* @var Entities\Account
*/
var $casualAccount;
....
}
这可能会有所帮助,但距离自动自动完成 eclipse 应该有的能力还很远。