JavaBeans: Difference between revisions

Content deleted Content added
Line 23:
:Persistence is the ability to save the current state of a Bean, including the values of a Bean's properties and instance variables, to nonvolatile storage and to retrieve them at a later time.
;Methods
:A beanBean should use [[Mutator_method#Java_example|accessor methods]] to [[Encapsulation_(computer_programming)|encapsulate]] the properties. A beanBean can provide other methods for business logic not related to the access to the properties.
 
== Advantages ==