Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- This is the simplest Example of Java Applet.
- This is An Example
- I hope you Visit http://www.suckthetech.blogspot.com
- */
- import java.applet.*;
- import java.awt.*;
- public class TechnoFeeds extends Applet
- {
- public void init()
- {
- //This is main Part of Java Applet, but here we don't need this part. Eventhogh we should create this part.
- }
- public void stop()
- {
- //We dont need this part also. But you must create this part also.
- }
- public void paint(Graphics g)
- {
- g.drawString("This is Ajith KP from Techno Feeds",100,20);
- g.drawString("http://www.suckthetech.blogspot.com",100,40);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment