Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Language IDEs » PHP Development Tools (PDT) » Developing?
Developing? [message #5328] Tue, 13 March 2007 20:03 Go to next message
Eclipse UserFriend
Originally posted by: nonvalid.nonvalid.nonvalid

Hi!

How is the developing progress? Is their any progress at this time? Should not sounds annoying, I just want to know.

One aspect which can be improved is the code auto completion.

Yours

Karsten
Re: Developing? [message #6136 is a reply to message #5328] Thu, 15 March 2007 22:37 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: yossi_leon.hotmail.com

Hi Karsten,

We are about to release PDT 0.7 but because of unresolved IP issues we need
to wait for the final approval. The next phase will be PDT 1.0 which is
about stabilizing and small enhancement changes.
What is exactly that you want to have better in PDT in terms of code assist?

Thanks,
Yossi Leon
PDT Project Leader.

"Karsten Jung" <nonvalid@nonvalid.nonvalid> wrote in message
news:et700m$cqs$1@utils.eclipse.org...
> Hi!
>
> How is the developing progress? Is their any progress at this time? Should
> not sounds annoying, I just want to know.
>
> One aspect which can be improved is the code auto completion.
>
> Yours
>
> Karsten
Re: Developing? [message #6168 is a reply to message #6136] Fri, 16 March 2007 18:56 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: nonvalid.nonvalid.nonvalid

Yossi Leon schrieb:
> We are about to release PDT 0.7 but because of unresolved IP issues we need
> to wait for the final approval. The next phase will be PDT 1.0 which is
> about stabilizing and small enhancement changes.

Ok, alright, thank you.
I think this project is really good, developing is fast.

> What is exactly that you want to have better in PDT in terms of code assist?

E.G. :

class CarMotor
{

public function Accelerate()
{
//...
}

}

class Car
{

public $Motor

public function __construct()
{
$this->Motor = new CarMotor();
}


public function Test2()
{
return new CarMotor();
}

}

$car = new Car();
$car->Motor->.... //Here should also be AutoCode
$car->Test2()->... //Here should also be AutoCode


Thanks,
Karsten
Re: Developing? [message #7762 is a reply to message #6168] Wed, 21 March 2007 08:43 Go to previous messageGo to next message
Guy Gurfinkel is currently offline Guy GurfinkelFriend
Messages: 39
Registered: July 2009
Member
The code assist mechanism doesn't run your code in order to gether the info.
You have to document your code with php doc in order to help it.

for example:

class Car
{
/**
* @var CarMotor
*/
public $Motor

}


Guy Gurfinkel,
Zend.
Re: Developing? [message #7906 is a reply to message #7762] Wed, 21 March 2007 15:19 Go to previous message
Eclipse UserFriend
Originally posted by: apaz.yahoo.com

I was not aware using php doc would help autocomplete. Is this documented?

Guy Gurfinkel wrote:
> The code assist mechanism doesn't run your code in order to gether the info.
> You have to document your code with php doc in order to help it.
>
> for example:
>
> class Car
> {
> /**
> * @var CarMotor
> */
> public $Motor
>
> }
>
>
> Guy Gurfinkel,
> Zend.
>
>
Previous Topic:newbe - deploying to server
Next Topic:Debugging conflicts with mod_rewrite
Goto Forum:
  


Current Time: Fri Apr 26 11:58:25 GMT 2024

Powered by FUDForum. Page generated in 0.03295 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top