diff options
Diffstat (limited to 'js/Misc/RELATIONALOP.js')
-rw-r--r-- | js/Misc/RELATIONALOP.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/js/Misc/RELATIONALOP.js b/js/Misc/RELATIONALOP.js index 5809668a..81fe6a15 100644 --- a/js/Misc/RELATIONALOP.js +++ b/js/Misc/RELATIONALOP.js @@ -113,4 +113,12 @@ function RELATIONALOP() { RELATIONALOP.prototype.get_popup_title = function RELATIONALOP() { return this.set_param_popup_title; } + RELATIONALOP.prototype.importset = function RELATIONALOP() { + var graphics = this.x.graphics; + var ary = getData(graphics.exprs); + this.rule = ary[0]; + this.zcr = ary[1]; + this.Datatype = ary[2]; + } + RELATIONALOP.prototype.getContainer = function RELATIONALOP() { return new BasicBlock(this.x); } } |