Granny's Programming Pearls
"inside of every large program is a small program struggling to get out"
JavaRanch.com/granny.jsp
The moose likes JSF and the fly likes Bean properties vs other Bean methods Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Java » JSF
Reply Bookmark "Bean properties vs other Bean methods" Watch "Bean properties vs other Bean methods" New topic
Author

Bean properties vs other Bean methods

leo donahue
Ranch Hand

Joined: Apr 17, 2003
Posts: 327
Normally, when you bind a value to a component, you create a property in the bean and provide get/set methods for that property.

ex:

What is it called when you create a random method with a "get" naming convention and use that as the value binding to a component? Is there a word for that?

ex:


Thanks, leo
Tim Holloway
Saloon Keeper

Joined: Jun 25, 2001
Posts: 14491
    
    7

Yes. It's called a "property 'get' method."

Properties aren't the internal objects, they're what external accessors see. And if an external accessor sees a "get" method, as far as it's concerned, that's a property fetch.

You can provide synthetic properties via internal computations, string operations, database fetches, or whatever and there will be no way for the external accessor code to know that the property value isn't actually a physical field within the target object.

Of course, in JSF, there are a few limitations on this. Property methods have to return the same value every time they're read within the request phases of the JSF lifecycle (I believe the term is "idempotent"). They shouldn't have "side effects", and for performance reasons, they shouldn't take long to execute.

Anything beyond that is fair game.


Customer surveys are for companies who didn't pay proper attention to begin with.
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: Bean properties vs other Bean methods
 
Similar Threads
Passing Params
Why am I getting NoSuchBeanDefinition Exception? I am new to Spring!
code compiles with no errors but doesn't not create a class with pdf fields
Using Hibernate to insert into Oracle Blob, then read back out
Printing two substrings