• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Newbie questions

 
Greenhorn
Posts: 13
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello,

I stepped away from development for a while. I have a few questions.

What is this? Is the "@" a reserved symbow of some type? Is it just setting up an object?
@ComponentExample(
title = "example.compat.selector.title",
description = "example.compat.selector.description",
example = "/resources/examples/compat/selector/selector.xhtml"
)
And this
@ManagedBean(name= SelectorBean.BEAN_NAME)

And this
@CustomScoped(value = "#{window}")

Also, what is the this? What is the purpose of the <...>

private List<SelectableCar> data;

Thank You for any reponse
 
Rancher
Posts: 3742
16
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Ty Davis wrote:What is this? Is the "@" a reserved symbow of some type? Is it just setting up an object?
@ComponentExample(
title = "example.compat.selector.title",
description = "example.compat.selector.description",
example = "/resources/examples/compat/selector/selector.xhtml"
)


Annotations

Ty Davis wrote:Also, what is the this? What is the purpose of the <...>

private List<SelectableCar> data;

Thank You for any reponse


Generics
 
Jerome Donaldson
Greenhorn
Posts: 13
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thank You very much for the reply.

I didnt know where to start looking.
 
reply
    Bookmark Topic Watch Topic
  • New Topic