home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1998 July & August
/
Pcwk78a98.iso
/
Internet
/
Javadraw
/
DATA.Z
/
Rectangle.pre
< prev
next >
Wrap
Text File
|
1995-10-08
|
608b
|
30 lines
import java.awt.*;
public class \Name\ extends java.awt.Rectangle
{
public \Name\ ()
{
super ();
}
public \Name\ (int AWidth, int AHeight)
{
super (AWidth, AHeight);
}
public \Name\ (int ALeft, int ATop, int AWidth, int AHeight)
{
super (ALeft, ATop, AWidth, AHeight);
}
public \Name\ (Point APoint)
{
super (APoint);
}
public \Name\ (Point AStart, Dimension ASize)
{
super (AStart, ASize);
}
public \Name\ (Dimension ASize)
{
super (ASize);
}
}