Chapter 6. Package org.kaiwitte.workbench.ui.controller

Table of Contents

Class ApplyPrototypeAction
Synopsis
ApplyPrototypeAction(MetaScheme, String, RecordReceiver, String)
actionPerformed(ActionEvent)
Class ColorCellRenderer
Synopsis
Class CompoundAction
Synopsis
Class CompoundDocumentListener
Synopsis
Class DeleteAction
Synopsis
DeleteAction(JTable, UIConfig)
actionPerformed(ActionEvent)
Class EditRecordAction
Synopsis
EditRecordAction(UIConfig, MetaSchemeTableModel, int, EditRecordPanel, JDialog)
actionPerformed(ActionEvent)
Class ExitAction
Synopsis
ExitAction(UIConfig)
actionPerformed(ActionEvent)
Interface IconCreator
Synopsis
Class InfoAction
Synopsis
InfoAction(UIConfig)
actionPerformed(ActionEvent)
Class PrintAction
Synopsis
PrintAction(UIConfig, MetaRecordCreator, PrintTemplateCreator, boolean, JDialog)
actionPerformed(ActionEvent)
Class ReconnectAction
Synopsis
Interface RecordReceiver
Synopsis
receiveRecord(Record)
Class RecordTransferListener
Synopsis
RecordTransferListener(JTable, SchemeTableModel, RecordReceiver)
mouseClicked(MouseEvent)
mouseEntered(MouseEvent)
mouseExited(MouseEvent)
mousePressed(MouseEvent)
mouseReleased(MouseEvent)
Class ReturnKeyRemapper
Synopsis
ReturnKeyRemapper()
remap(JComponent)
Class SearchAction
Synopsis
SearchAction(UIConfig, SearchPanel)
actionPerformed(ActionEvent)
Class SearchHistoryAction
Synopsis
SearchHistoryAction(UIConfig, ConditionCreator, MetaSchemeTableModel)
actionPerformed(ActionEvent)
Class SendMailAction
Synopsis
SendMailAction(MailDialog, UIConfig)
actionPerformed(ActionEvent)
Class ShowDeveloperHelpAction
Synopsis
ShowDeveloperHelpAction(UIConfig)
actionPerformed(ActionEvent)
Class ShowEditDialogAction
Synopsis
ShowEditDialogAction(UIConfig, MetaSchemeTableModel, JTable)
actionPerformed(ActionEvent)
Class ShowFeedbackDialogAction
Synopsis
Class ShowHelpAction
Synopsis
ShowHelpAction(UIConfig)
actionPerformed(ActionEvent)
Class ShowNewRecordDialog
Synopsis
ShowNewRecordDialog(UIConfig, MetaSchemeTableModel)
actionPerformed(ActionEvent)
Class ShowOptionsAction
Synopsis
ShowOptionsAction(UIConfig)
actionPerformed(ActionEvent)
Class ShowSearchDialog
Synopsis
ShowSearchDialog(UIConfig, MetaSchemeTableModel)
actionPerformed(ActionEvent)
Class ShowTextAction
Synopsis
ShowTextAction(UIConfig)
Class ShowTransferRecordDialog
Synopsis
ShowTransferRecordDialog(UIConfig, MetaRecord, MetaSchemeTableModel, MetaSchemeTableModel)
actionPerformed(ActionEvent)
Class StoreRecordAction
Synopsis
StoreRecordAction(UIConfig, NewRecordPanel, JDialog)
actionPerformed(ActionEvent)
Class TablePopupListener
Synopsis
TablePopupListener(JTable, UIConfig)

Class ApplyPrototypeAction

An action to apply a template to a org.kaiwitte.workbench.ui.controller.RecordReceiver. The templates can be defined by the user in the option dialog.

Synopsis

 public final class ApplyPrototypeAction extends AbstractAction {
  public ApplyPrototypeAction(MetaScheme scheme,
                              String name,
                              RecordReceiver receiver,
                              String recordString);

  public void actionPerformed(ActionEvent e);
}

Methods inherited from javax.swing.AbstractAction: addPropertyChangeListener, clone, firePropertyChange, getKeys, getPropertyChangeListeners, getValue, isEnabled, putValue, removePropertyChangeListener, setEnabled

Methods inherited from java.lang.Object: equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait

Inheritance Path. java.lang.Object-> javax.swing.AbstractAction-> org.kaiwitte.workbench.ui.controller.ApplyPrototypeAction

ApplyPrototypeAction(MetaScheme, String, RecordReceiver, String)

Synopsis: public ApplyPrototypeAction(org.kaiwitte.workbench.data.MetaSchem\
e scheme,

                                      java.lang.String name, 
                                      org.kaiwitte.workbench.ui.controller.\
RecordReceiver receiver, 
                                      java.lang.String recordString);

Parameters

scheme

the scheme to be used

name

the name for this Action

receiver

the receiver of the prototype record

recordString

the string that defines the fields of the template record. Fields are separated by commata.

Creates a new instance.

actionPerformed(ActionEvent)

Synopsis: public void actionPerformed(java.awt.event.ActionEvent e);

Parameters

e

not used

Applies the template to the receiver.