Tell me the difference between an applet and a Japplet?
Answer Posted / la_di
A JApplet is a modern Applet. It is also an Applet since it
extends Applet and could therefore do anything an Applet
can do. JApplet is part of the javax.swing-packet and is
therefor compatible with swing components, the new graphcs
component packet preferable before the old java.awt. For
new applications JApplet is recommended. Only if you are
designing an applet for an old java-version you should use
Applet.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What must a class do to implement an interface in java programming?
What is literal example?
How many static init can you have?
What is hashmap in java?
What is garbage collection? What is the process that is responsible for doing that in java?
Can a constructor be made final?
How is it possible in java programming for two string objects with identical values not to be equal under the == operator?
why are there separate wait and sleep methods? : Java thread
What will be the initial value of an object reference which is defined as an instance variable?
What is bufferedwriter?
What is the difference between numeric and integer?
What are the rules for variable declaration?
Difference between string s= new string (); and string s = "abv";?
Why string is not a wrapper class?
What is re-factoring in software?