You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@click.apache.org by vxc vxc <vx...@gmail.com> on 2010/03/23 18:39:17 UTC

What is needed for Netbeens 6.8 to recognize Apache Click @Bindable annotation?

Hello,

What is needed for Netbeens to recognize @Bindable annotation?

I get:

cannot find symbol
symbol: class Bindable

Source code:

package clicktest.page;
public class HomePage extends BorderPage
{
   @Bindable protected String title = "Home";
}

Thank you!

Re: What is needed for Netbeens 6.8 to recognize Apache Click @Bindable annotation?

Posted by vxc vxc <vx...@gmail.com>.
Have you imported org.apache.click.util.Bindable?

No, I have not and that was the issue. Thank you for your help!

On Wed, Mar 24, 2010 at 7:57 PM, Ernesto Celis <ce...@yahoo.es>wrote:

> >
> >De: vxc vxc <vx...@gmail.com>
> >>
> >What is needed for Netbeens to recognize @Bindable annotation?
> >
> >>
> >I get:
> >cannot find symbol
> >symbol: class Bindable
>
> Have you imported org.apache.click.util.Bindable?
>
> I use NetBeans 6.8 without any problem to build and deploy.
>
> >
> >>
> >Source code:
> >
> >>
> >package clicktest.page;
> >>
> >public class HomePage extends BorderPage
> >>
> >{
> >>
> >    @Bindable protected String title = "Home";
> >>
> >}
> >
> >>
> >Thank you!
> >
>
>
>       Encuentra las mejores recetas en Yahoo! Cocina.
> http://mx.mujer.yahoo.com/cocina/
>

Re: What is needed for Netbeens 6.8 to recognize Apache Click @Bindable annotation?

Posted by Ernesto Celis <ce...@yahoo.es>.
>
>De: vxc vxc <vx...@gmail.com>
>>
>What is needed for Netbeens to recognize @Bindable annotation?
>
>>
>I get:
>cannot find symbol
>symbol: class Bindable

Have you imported org.apache.click.util.Bindable?

I use NetBeans 6.8 without any problem to build and deploy.

>
>>
>Source code:
>
>>
>package clicktest.page;
>>
>public class HomePage extends BorderPage
>>
>{
>>
>    @Bindable protected String title = "Home";
>>
>}
>
>>
>Thank you!
>


      Encuentra las mejores recetas en Yahoo! Cocina.                       
http://mx.mujer.yahoo.com/cocina/

Re: What is needed for Netbeens 6.8 to recognize Apache Click @Bindable annotation?

Posted by vxc vxc <vx...@gmail.com>.
When I create a web project a choose click framework, the
click-2.1.0-RC1-incubating jar is automatically added into the project's
Libraries. This jar contains org.apache.click.util.Bindable class.

I have added click-2.1.0 jar manually into the project's Libraries but the
result is the same, I get:

cannot find symbol
symbol: class Bindable


Thank you!

On Tue, Mar 23, 2010 at 12:39 PM, vxc vxc <vx...@gmail.com> wrote:

> Hello,
>
> What is needed for Netbeens to recognize @Bindable annotation?
>
> I get:
>
> cannot find symbol
> symbol: class Bindable
>
> Source code:
>
> package clicktest.page;
> public class HomePage extends BorderPage
> {
>    @Bindable protected String title = "Home";
> }
>
> Thank you!

Re: What is needed for Netbeens 6.8 to recognize Apache Click @Bindable annotation?

Posted by Ray Garcia <ra...@gmail.com>.
Sounds like the click jars and not added to your project path.

You building the project in netbeans?



On Tue, Mar 23, 2010 at 12:39 PM, vxc vxc <vx...@gmail.com> wrote:

> Hello,
>
> What is needed for Netbeens to recognize @Bindable annotation?
>
> I get:
>
> cannot find symbol
> symbol: class Bindable
>
> Source code:
>
> package clicktest.page;
> public class HomePage extends BorderPage
> {
>    @Bindable protected String title = "Home";
> }
>
> Thank you!