Merge branch 'master' of https://source.jalview.org/git/jalviewjs.git
[jalviewjs.git] / site / j2s / java / beans / PropertyVetoException.js
1 Clazz.declarePackage ("java.beans");
2 Clazz.load (["java.lang.Exception"], "java.beans.PropertyVetoException", null, function () {
3 c$ = Clazz.decorateAsClass (function () {
4 this.evt = null;
5 Clazz.instantialize (this, arguments);
6 }, java.beans, "PropertyVetoException", Exception);
7 Clazz.makeConstructor (c$, 
8 function (mess, evt) {
9 Clazz.superConstructor (this, java.beans.PropertyVetoException, [mess]);
10 this.evt = evt;
11 }, "~S,java.beans.PropertyChangeEvent");
12 Clazz.defineMethod (c$, "getPropertyChangeEvent", 
13 function () {
14 return this.evt;
15 });
16 });