Subclassing Applet class
Subclassing Applet class
- Example
- import java.awt.*; // imports all of the classes in java.awt package
public class ex1 extends java.applet.Applet {
public void init() { // overrides the method in java.applet.Applet
add(new Button("Order"));
TextArea commentArea = new TextArea(5, 25);
commentArea.insertText ("Á¤º¸°úÇÐȸ", 0);
add(commentArea);
}
}
Notes: