Bunnie.net Java Packages: Net.Bunnie.JGM

Class Name Class Description
EntryGUIAdd, JCloseListener, JGMCellRenderer

(screenshots:
original GUI,
modified GUI,
original menu,
current GUI)
This class is still actively being developed. It extends JFrame and implements ActionListener. JCloseListener extends WindowAdapter. JGMCellRenderer extends JLabel and implements ListCellRenderer. It uses the following methods:
setCurrentTime() - shoves the current time into drop down lists
currentEntryNumber() - get the current entry number...
canBeAnOption() - checks if user can ctrl-c/v/x.
EntryGUIAdd() - the GUI
actionPerformed (ActionEvent e) - all of the interactive stuff - checking how many days are in each month on select, the ctrl-stuff and pop up menu insertions
main (String[] args) - set size and open window

windowClosing (WindowEvent ev) - close the window

JGMCellRenderer() - basic list properties
getListCellRendererComponent(JList list, Object value, int index, boolean isSelected, boolean cellHasFocus) - highlight the object blue if selected and insert separators
EntryGUIEdit
(screenshot)
This class is still actively being developed. It extends JFrame and implements ActionListener and ClipboardOwner. It uses the following methods:
setEditScreen(int entryNumber) - put all of the entry info onto the GUI
setEditScreenCurrent() - get the current entry and setEditScreen() with it
canBeAnOption() - checks if user can ctrl-c/v/x.
EntryGUIEdit() - the GUI
actionPerformed (ActionEvent e) - all of the interactive stuff - checking how many days are in each month on select, detecting when the button is pressed
toClipboard(String str) - copy to clipboard
lostOwnership(Clipboard clip, Transferable tr) - this method is empty
main (String[] args) - set size and open window
EntryOut This class was written on July 29th, 2003. It uses the following methods:
main (String[] args) - Print out an entry and make its info presentable.
EntryOutGUI

(screenshots:
planning,
original GUI,
current GUI)
This class was written on August 15th, 2003. It extends JFrame and implements ActionListener. It uses the following methods:
setScreen (int entryNumber) - put all of the entry info onto the GUI
EntryOutGUI() - the GUI
actionPerformed (ActionEvent e) - show the entry if the button is pressed
main (String[] args) - set size and open window

Java