Yes.. Simplicity.
And properties WILL make it even more simple for developers to develop in Java.
If implemented as in C#:
public String Title{
get{
return title;
}
set{
title=value;
}
}
...getters and setters will be forced to be in the same block of code, instead some times randomly placed around a 2500 lines pile of code. Furthermore, how many times havent you gotten sick and tired of large classes having not only 50 getters, but also 50 setters. The lists generated for these classes for "intellisense" use are loooong.
Using properties the bean-patterns could be a lot easier to use for a developer using the bean.
|