Skip to content
Snippets Groups Projects
Commit 9ee50dba authored by Daniel Schramm's avatar Daniel Schramm
Browse files

Action event extended to carry additional data

parent 92a5472c
No related branches found
No related tags found
No related merge requests found
...@@ -58,4 +58,18 @@ public abstract class ControlPanel extends JPanel { ...@@ -58,4 +58,18 @@ public abstract class ControlPanel extends JPanel {
} }
}; };
} }
protected final ActionListener createListener(ActionListener action, String command, Object data) {
return new AbstractAction() {
@Override
public void actionPerformed(ActionEvent e) {
action.actionPerformed(new LoadedActionEvent(
e.getSource(),
ActionEvent.ACTION_PERFORMED,
command,
data)
);
}
};
}
} }
package cz.fidentis.analyst.core;
import java.awt.event.ActionEvent;
/**
*
* @author Daniel Schramm
*/
public class LoadedActionEvent extends ActionEvent {
private final Object data;
public LoadedActionEvent(Object source, int id, String command, Object data) {
super(source, id, command);
this.data = data;
}
public LoadedActionEvent(Object source, int id, String command, int modifiers, Object data) {
super(source, id, command, modifiers);
this.data = data;
}
public LoadedActionEvent(Object source, int id, String command, long when, int modifiers, Object data) {
super(source, id, command, when, modifiers);
this.data = data;
}
public Object getData() {
return data;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment