// -------------------------------------------------- // Importing the Abstract Windows Toolkit Package // -------------------------------------------------- import java.awt.* ; // -------------------------------------------------- // Importing the Applet Package // -------------------------------------------------- import java.applet.* ; // -------------------------------------------------- // The Applet Begins here // -------------------------------------------------- public class PrintTextAndGraphics extends Applet { public void paint(Graphics g) { g.setColor(Color.red) ; g.drawRect(0,0, getSize().width -1, getSize().height -1); g.drawString("This is a Short Text", 60 , 80) ; } }