Merge branch 'master' of https://source.jalview.org/git/jalviewjs.git
[jalviewjs.git] / site / j2s / javax / swing / event / DocumentEvent.js
1 Clazz.declarePackage ("javax.swing.event");
2 Clazz.declareInterface (javax.swing.event, "DocumentEvent");
3 Clazz.pu$h(self.c$);
4 c$ = Clazz.decorateAsClass (function () {
5 this.typeString = null;
6 Clazz.instantialize (this, arguments);
7 }, javax.swing.event.DocumentEvent, "EventType");
8 Clazz.makeConstructor (c$, 
9  function (a) {
10 this.typeString = a;
11 }, "~S");
12 Clazz.overrideMethod (c$, "toString", 
13 function () {
14 return this.typeString;
15 });
16 c$.INSERT = c$.prototype.INSERT =  new javax.swing.event.DocumentEvent.EventType ("INSERT");
17 c$.REMOVE = c$.prototype.REMOVE =  new javax.swing.event.DocumentEvent.EventType ("REMOVE");
18 c$.CHANGE = c$.prototype.CHANGE =  new javax.swing.event.DocumentEvent.EventType ("CHANGE");
19 c$ = Clazz.p0p ();
20 Clazz.declareInterface (javax.swing.event.DocumentEvent, "ElementChange");