kAWT Version 0.96

java.awt
Class FileDialog

java.lang.Object
  |
  +--java.awt.Component
        |
        +--java.awt.Container
              |
              +--java.awt.Window
                    |
                    +--java.awt.Dialog
                          |
                          +--java.awt.FileDialog

public class FileDialog
extends Dialog
implements ActionListener


Field Summary
static int LOAD
           
static int SAVE
           
 
Fields inherited from class java.awt.Container
insets
 
Constructor Summary
FileDialog(Frame frame)
           
FileDialog(Frame frame, String title)
           
FileDialog(Frame frame, String title, int mode)
           
 
Method Summary
 void actionPerformed(ActionEvent e)
          Invoked when an action occurs.
 String getDirectory()
           
 String getFile()
           
 
Methods inherited from class java.awt.Dialog
getMinimumSize, paint, setTitle, setVisible
 
Methods inherited from class java.awt.Window
addWindowListener, dispose, getFocusOwner, getOwner, getToolkit, pack, proxyRequestFocus, show
 
Methods inherited from class java.awt.Container
add, add, add, doLayout, findComponentAt, getComponent, getComponentCount, getComponents, getInsets, getLayout, isAncestorOf, paintAll, paintComponents, remove, removeAll, setLayout, update, validate
 
Methods inherited from class java.awt.Component
addKeyListener, addMouseListener, addMouseMotionListener, contains, getBounds, getFont, getFontMetrics, getGraphics, getHeight, getLocationOnScreen, getMaximumSize, getParent, getPreferredSize, getSize, getWidth, getX, getY, invalidate, isEnabled, isValid, isVisible, processKeyEvent, processMouseEvent, repaint, repaint, requestFocus, setBackground, setBounds, setEnabled, setForeground, setLocation, setSize, setSize
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

LOAD

public static final int LOAD

SAVE

public static final int SAVE
Constructor Detail

FileDialog

public FileDialog(Frame frame)

FileDialog

public FileDialog(Frame frame,
                  String title)

FileDialog

public FileDialog(Frame frame,
                  String title,
                  int mode)
Method Detail

actionPerformed

public void actionPerformed(ActionEvent e)
Description copied from interface: ActionListener
Invoked when an action occurs.
Specified by:
actionPerformed in interface ActionListener

getFile

public String getFile()

getDirectory

public String getDirectory()

kAWT Version 0.96