May 22, 2007
The Top 10 Open-Source Destinations at the 2007 JavaOne Conference. This year's Conference celebrates the free and open software environment with a new Open Source...
More »
May 22, 2007
Top 10 Destinations for Enterprise Developers at the 2007 JavaOne Conference. Here are 10 must-see destinations and some related recommendations for enterprise developers at...
More »
|
 |
July 25, 2006
July 25, 2006
(See intro for a background and caveats on these coding advice blog entries.)
How do you initialize fields in a constructor? And how do you initialize fields in a JavaBean setter method?
Here's the, in my opinion, correct way to do it:
void setTemperature(int temperature) {
this.temperature = temperature;
}
The same scheme is used in constructors.
...
More »
July 25, 2006
With code examples and a demo application, this article shows how to create desktop Java platform applications that customers can modify and configure using the JavaScript programming language.
More »
|