September 2005
Intermediate to advanced
240 pages
6h 28m
English
These are the graphical user interface (GUI) display classes.
public class CheckinDialog
extends JDialog
{
void DoneButton_actionPerformed( ActionEvent e )
void CancelButton_actionPerformed( ActionEvent e )
// Other GUI related methods
}
public class CheckoutDialog
extends JDialog
{
void DoneButton_actionPerformed( ActionEvent e )
void CancelButton_actionPerformed( ActionEvent e )
// Other GUI related methods
}
public class DisplayHelper
{
public static void displayError( Component component, String text )
public static void displayMessage( String text )
}
public class Main
{
public static void main( String[] args )
}
public class MainFrame
extends JFrame
{
void checkoutButton_actionPerformed( ActionEvent e )
void checkinButton_actionPerformed( ActionEvent e )
// Other GUI related methods
}