-----------------------------39064154454748 Content-Disposition: form-data; name="userfile"; filename="ObjectDemo.java" Content-Type: application/octet-stream import java.applet.Applet; import java.awt.*; //This class is similar to the PaintDemo class, except that it uses the init method to calculate values public class ObjectDemo extends Applet { Color color1, color2, color3; Font font1; public void init() { setBackground(Color.yellow); color1 = new Color(255,50,50); color2 = color1.brighter(); color3 = new Color(50, 50, 255); font1 = new Font("SansSerif", Font.ITALIC, 14); } // the paint method can now use the colours and fonts defined in init(). public void paint(Graphics g) { g.setColor(color1); g.drawRect(20, 20, 120, 60); g.setColor(color2); g.fillOval(20, 20, 120, 60); g.setColor(color3); g.setFont(font1); g.drawString("Hello wolrd", 50, 50); } } 1
Hosted by www.Geocities.ws