| Home | Authors | Source | Download | Execute | Java!? | Manual |
| DataPlot__
AUTHORS' COMMENTS |
Visit our Home pages | |
| mahmut@ug.bcc.bilkent.edu.tr | Mahmut YILDIRIM | |
| velioglu@ug.bcc.bilkent.edu.tr | Haydar Velioglu | |
| ulger@ug.bcc.bilkent.edu.tr | S. Huseyin ULGER | |
|
|
||
| Is
Java the
right choice? |
Portability: If you are looking for portability Java is not the right choice. First of all it has two (at least) major versions which are not compatible even with each other. Also the interpreters of the same version behave different than each other. For example. the implementation of Scroll Bar is different in the PC version and the Sun version. With the MS Windows environment running on PC the
constructor for the scroll bar is called like
To get the same effect with the Sun XWindows implementation
you have to code the same lines as
For the Java to be portable its different implementations should behave in the same way to the same codes. Deprecation:
Another method which is deprecated is the reshape()
method which is replaced with setBounds() method.
|
|