home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1998 July & August
/
Pcwk78a98.iso
/
Internet
/
Javadraw
/
DATA.Z
/
Dialog.pre
< prev
next >
Wrap
Text File
|
1995-10-08
|
1KB
|
56 lines
import java.awt.*;
public class \Name\ extends java.awt.Dialog
{
public \Name\ (Frame AParent, boolean AModal)
{
super (AParent, AModal);
}
public \Name\ (Frame AParent, String ATitle, boolean AModal)
{
super (AParent, ATitle, AModal);
}
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]