JAL-1807 includes ?j2sdebug flag and DebugJS._(msg)
[jalviewjs.git] / bin / javajs / awt / event / ActionEvent.js
1 Clazz.declarePackage ("javajs.awt.event");
2 Clazz.load (["javajs.awt.event.Event"], "javajs.awt.event.ActionEvent", null, function () {
3 c$ = Clazz.decorateAsClass (function () {
4 this.actionCommand = null;
5 Clazz.instantialize (this, arguments);
6 }, javajs.awt.event, "ActionEvent", javajs.awt.event.Event);
7 Clazz.defineMethod (c$, "getActionCommand", 
8 function () {
9 return this.actionCommand;
10 });
11 });