|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectde.cbse.jeasy.JEDefaultJECallBack
public class JEDefaultJECallBack
Implementation of a JECallBack interface. Used to be extended by the CallBack classes of the application.
| Constructor Summary | |
|---|---|
JEDefaultJECallBack()
|
|
| Method Summary | |
|---|---|
void |
callBack(java.awt.AWTEvent e,
java.lang.String id)
All events from the swing components like menus, buttons, checkboxes, datafields are send to this callBack. |
void |
callBack(java.awt.AWTEvent e,
java.lang.String id,
int row,
int column)
All Mouse events from the JETable are send to this callBack. |
void |
callBack(javax.swing.event.ChangeEvent e,
java.lang.String id)
The events from a tabbedpane are send to this callBack. |
void |
callBack(javax.swing.event.DocumentEvent e,
java.lang.String id)
All events from the text components like datafields and dataareas are send to this callBack. |
void |
callBack(javax.swing.event.HyperlinkEvent e,
java.lang.String id)
All returns from JEEditorPane HyperlinkListener will call this method |
void |
callBack(java.awt.event.ItemEvent e,
java.lang.String id)
All ItemEvents from the swing components like comboboxes, radiobuttons, checkboxes are send to this callBack. |
void |
callBack(javax.swing.event.ListSelectionEvent e,
java.lang.String id,
javax.swing.ListSelectionModel lsm)
All Selection events from the JETable are send to this callBack. |
void |
callBack(java.awt.event.MouseEvent e,
java.lang.String id,
javax.swing.tree.DefaultMutableTreeNode dmt)
All mouse events from treenodes or lists are send to this callBack. |
void |
callBack(javax.swing.event.TableModelEvent e,
java.lang.String id)
All events from the TableModel of the JETable are send to this callBack. |
void |
callBack(javax.swing.event.TreeExpansionEvent e,
java.lang.String id)
All Expansion events from a JETreeNode are send to this callBack |
void |
callBack(javax.swing.event.TreeModelEvent e,
java.lang.String id)
All TreeModel events from a JETreeNode are send to this callBack |
void |
callBack(javax.swing.event.TreeSelectionEvent e,
java.lang.String id,
javax.swing.tree.TreePath tp)
All Selection events from a JETreeNode are send to this callBack |
void |
callBack(java.awt.event.WindowEvent e,
java.lang.String id)
All events from windows like focus lost or gained are send to this callBack. |
void |
callBackComponentEvent(java.awt.event.ComponentEvent e,
java.lang.String id)
A low-level event which indicates that a component moved, changed size, or changed visibility (also, the root class for the other component-level events). |
void |
callBackContextHelp(int mode,
java.lang.String id)
If a jeasy id will get the focus or a mouse will enter a component hge id and mode is send to this callback. |
boolean |
callBackInputVerifier(java.lang.String id,
java.lang.String text,
int error)
Input Verifiers will send to this callback |
void |
callBackInvoke(java.lang.String xmi)
All returns from JEMethodinvocation will call this method |
boolean |
callBackTimerTask(java.lang.String id)
If a TimerTask for this object was created, this method will be called time by time. |
void |
initJECallBack()
Should be called before first user action and after initializing all JEObjects |
void |
propertyChange(java.beans.PropertyChangeEvent evt)
A "PropertyChange" event gets delivered whenever a bean changes a "bound" or "constrained" property. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public JEDefaultJECallBack()
| Method Detail |
|---|
public void initJECallBack()
initJECallBack in interface JECallBack
public void callBack(java.awt.event.WindowEvent e,
java.lang.String id)
callBack in interface JECallBackWindowEvent - the event send by the windowid - the id of the JEObject
public void callBack(java.awt.AWTEvent e,
java.lang.String id)
callBack in interface JECallBacke - the event send by the componentid - the id of the JEObject
public void callBack(java.awt.event.ItemEvent e,
java.lang.String id)
callBack in interface JECallBacke - the event send by the componentid - the id of the JEObject
public void callBack(javax.swing.event.DocumentEvent e,
java.lang.String id)
callBack in interface JECallBacke - the event send by the componentid - the id of the JEObject
public void callBack(javax.swing.event.TableModelEvent e,
java.lang.String id)
callBack in interface JECallBacke - the event send by the TableModelid - the id of the JEObject
public void callBack(javax.swing.event.TreeSelectionEvent e,
java.lang.String id,
javax.swing.tree.TreePath tp)
callBack in interface JECallBacke - TreeSelectionEventid - of the sending JEObjecttp - TreePath
public void callBack(javax.swing.event.TreeModelEvent e,
java.lang.String id)
callBack in interface JECallBacke - id - of the sending JEObject
public void callBack(javax.swing.event.TreeExpansionEvent e,
java.lang.String id)
callBack in interface JECallBacke - id - of the sending JEObject
public void callBack(javax.swing.event.ListSelectionEvent e,
java.lang.String id,
javax.swing.ListSelectionModel lsm)
callBack in interface JECallBacke - the event send by the Tableid - the id of the JEObjectlsm - the id of the JEObject where the component was added
public void callBack(java.awt.AWTEvent e,
java.lang.String id,
int row,
int column)
callBack in interface JECallBacke - the event send by the Tableid - the id of the JEObjectrow - the row of the tableModelcolumn - the column of the tableModel
public void callBack(java.awt.event.MouseEvent e,
java.lang.String id,
javax.swing.tree.DefaultMutableTreeNode dmt)
callBack in interface JECallBacke - the event send by the swing componentid - the id of the JEObjectdmt - the DefaultMutableTreeNode clicked on
public void callBack(javax.swing.event.ChangeEvent e,
java.lang.String id)
callBack in interface JECallBacke - the event send when a tabbedpane element is activatedid - the id of the JEObject
public boolean callBackInputVerifier(java.lang.String id,
java.lang.String text,
int error)
callBackInputVerifier in interface JECallBackid - the id of the JEObjecttext - of the input componenterror - public void callBackInvoke(java.lang.String xmi)
callBackInvoke in interface JECallBackxmi - xmi String that will be invoked or null if nothing is to do
public void callBack(javax.swing.event.HyperlinkEvent e,
java.lang.String id)
callBack in interface JECallBackpublic void propertyChange(java.beans.PropertyChangeEvent evt)
propertyChange in interface java.beans.PropertyChangeListener
public void callBackComponentEvent(java.awt.event.ComponentEvent e,
java.lang.String id)
callBackComponentEvent in interface JECallBacke - Component Eventid - JEasy idpublic boolean callBackTimerTask(java.lang.String id)
callBackTimerTask in interface JECallBackid -
public void callBackContextHelp(int mode,
java.lang.String id)
callBackContextHelp in interface JECallBackmode - id - jeasy id
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||