implement interfaces

3 messages Options
Embed this post
Permalink
András Csányi

implement interfaces

Reply Threaded More More options
Print post
Permalink
Hi all!

Nowadays I'm working with lot of interfaces. So, I'm wondering is
there a function in the php version of NetBeans to implement all
interface just like in java? Now, I'm using 6.8 Milestone 1.

I would appreciate your kind help!

András

--
- -
--  Csanyi Andras  -- http://sayusi.hu -- Sayusi Ando
--  "Bízzál Istenben és tartsd szárazon a puskaport!".-- Cromwell

---------------------------------------------------------------------
To unsubscribe, e-mail: [hidden email]
For additional commands, e-mail: [hidden email]

radek matous

Re: implement interfaces

Reply Threaded More More options
Print post
Permalink
András Csányi wrote:

> Hi all!
>
> Nowadays I'm working with lot of interfaces. So, I'm wondering is
> there a function in the php version of NetBeans to implement all
> interface just like in java? Now, I'm using 6.8 Milestone 1.
>
> I would appreciate your kind help!
>
> András
>
>  
Yes, line hint exist.

interface a() {
    //some methods here
}

class b implements a {//put cursor on this line and hint should appear
}

Was fixed recently, so if you have any problem with it. Take the latest
build

thanks
Radek



---------------------------------------------------------------------
To unsubscribe, e-mail: [hidden email]
For additional commands, e-mail: [hidden email]

András Csányi

Re: implement interfaces

Reply Threaded More More options
Print post
Permalink
2009/10/22 radek matous <[hidden email]>:

> András Csányi wrote:
>>
>> Hi all!
>>
>> Nowadays I'm working with lot of interfaces. So, I'm wondering is
>> there a function in the php version of NetBeans to implement all
>> interface just like in java? Now, I'm using 6.8 Milestone 1.
>>
>> I would appreciate your kind help!
>>
>> András
>>
>>
>
> Yes, line hint exist.
>
> interface a() {
>   //some methods here
> }
>
> class b implements a {//put cursor on this line and hint should appear
> }
>
> Was fixed recently, so if you have any problem with it. Take the latest
> build

Wow! Great! It's working fine! :D

--
- -
--  Csanyi Andras  -- http://sayusi.hu -- Sayusi Ando
--  "Bízzál Istenben és tartsd szárazon a puskaport!".-- Cromwell

---------------------------------------------------------------------
To unsubscribe, e-mail: [hidden email]
For additional commands, e-mail: [hidden email]