home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Internet Gallery
/
INTERGAL.bin
/
intergal
/
prgs
/
idv21
/
data.z
/
Window.pre
< prev
next >
Wrap
Text File
|
1995-10-08
|
910b
|
51 lines
import java.awt.*;
public class \Name\ extends java.awt.Window
{
public \Name\ (Frame AParent)
{
super (AParent);
}
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]