home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Internet Gallery
/
INTERGAL.bin
/
intergal
/
prgs
/
idv21
/
data.z
/
Frame.pre
< prev
next >
Wrap
Text File
|
1995-10-08
|
964b
|
55 lines
import java.awt.*;
public class \Name\ extends java.awt.Frame
{
public \Name\ ()
{
super ();
}
public \Name\ (String ATitle)
{
super (ATitle);
}
public void init()
{
//Add your code here
}
public void start()
{
init ();
//Add your code here
}
public void stop()
{
//Add your code here
}
public void destroy()
{
//Add your code here
}
public void paint(Graphics g)
{
//Add your code here
super.paint (g);
}
public boolean action (Event e, Object o)
{
//Add your code here
return super.action (e,o);
}
public boolean handleEvent (Event e)
{
//Add your code here
return super.handleEvent (e);
}
}
//JAVADRAW! type definition section
//Please do not alter this remark! [JDV5.0tds]