UNIT-4 JAVA
UNIT-4 JAVA
• public void drawRect(int x, int y, int width, int height): draws a rectangle
with the specified width and height.
• public abstract void fillRect(int x, int y, int width, int height): is used to fill
rectangle with the default color and specified width and height.
• public abstract void drawOval(int x, int y, int width, int height): is used to
draw oval with the specified width and height.
• public abstract void fillOval(int x, int y, int width, int height): is used to fill
oval with the default color and specified width and height.
• public abstract void drawArc(int x, int y, int width, int height, int
startAngle, int arcAngle): is used draw a circular or elliptical arc.
• public abstract void fillArc(int x, int y, int width, int height, int
startAngle, int arcAngle): is used to fill a circular or elliptical arc.
• public abstract void setColor(Color c): is used to set the graphics current
color to the specified color.
• Displaying documents
• Playing animations
• An applet cannot start any program on the host that’s executing it.
• a2=new Button("cancel");
• l1.setBounds(100,100, 75,75);