July 13, 2007
Enterprise Systems: The New Bounce in Suns Step. Dont look now, but Sun Microsystems Inc. has a new bounce in its step.
From its recent...
More »
June 24, 2007
Jazoon'07. Jazoon'07 brings together experts and users of Java and open source technologies from all...
More »
|
 |
July 25, 2006
category: Developers
(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 »
category: Developers
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 »
|