I have been recently trying to utilize the Java API (http://docs.oracle.com/javase/7/docs/api/). I was wondering how I can locate the "page.drawRect" method. Is the "drawRect" method apart of the "page" class ? I'm not sure if that's how the syntax works, or if I'm making sense. All I want is an explanation of "page.drawRect" and maybe some tips on how to use the API documentation. Nothing is wrong with the actual code I posted. Thank you :)
import javax.swing.JApplet;
import java.awt.*;
public class HopeThisWorks extends JApplet
{
public void paint(Graphics page)
{
page.drawRect(50, 50, 40, 40);
page.drawRect(60, 80, 225, 30);
page.drawOval(75, 65, 20, 20);
page.drawLine(35, 60, 100, 120);
page.drawString ("\"Don't try to be like Jackie. There is only one Jackie. " +
"Study computers instead.\"", 110, 70);
page.drawString ("-Jackie Chan",130, 100);
}
}