Merge branch 'master' of https://source.jalview.org/git/jalviewjs.git
[jalviewjs.git] / site / j2s / jssun / awt / image / ImageConsumerQueue.js
index 99f726f..0ee679b 100644 (file)
@@ -1,42 +1,42 @@
-Clazz.declarePackage ("jssun.awt.image");\r
-c$ = Clazz.decorateAsClass (function () {\r
-this.next = null;\r
-this.consumer = null;\r
-this.interested = false;\r
-this.securityContext = null;\r
-this.secure = false;\r
-Clazz.instantialize (this, arguments);\r
-}, jssun.awt.image, "ImageConsumerQueue");\r
-c$.removeConsumer = Clazz.defineMethod (c$, "removeConsumer", \r
-function (cqbase, ic, stillinterested) {\r
-var cqprev = null;\r
-for (var cq = cqbase; cq != null; cq = cq.next) {\r
-if (cq.consumer === ic) {\r
-if (cqprev == null) {\r
-cqbase = cq.next;\r
-} else {\r
-cqprev.next = cq.next;\r
-}cq.interested = stillinterested;\r
-break;\r
-}cqprev = cq;\r
-}\r
-return cqbase;\r
-}, "jssun.awt.image.ImageConsumerQueue,java.awt.image.ImageConsumer,~B");\r
-c$.isConsumer = Clazz.defineMethod (c$, "isConsumer", \r
-function (cqbase, ic) {\r
-for (var cq = cqbase; cq != null; cq = cq.next) {\r
-if (cq.consumer === ic) {\r
-return true;\r
-}}\r
-return false;\r
-}, "jssun.awt.image.ImageConsumerQueue,java.awt.image.ImageConsumer");\r
-Clazz.makeConstructor (c$, \r
-function (src, ic) {\r
-this.consumer = ic;\r
-this.interested = true;\r
-this.secure = true;\r
-}, "jssun.awt.image.InputStreamImageSource,java.awt.image.ImageConsumer");\r
-Clazz.overrideMethod (c$, "toString", \r
-function () {\r
-return ("[" + this.consumer + ", " + (this.interested ? "" : "not ") + "interested" + (this.securityContext != null ? ", " + this.securityContext : "") + "]");\r
-});\r
+Clazz.declarePackage ("jssun.awt.image");
+c$ = Clazz.decorateAsClass (function () {
+this.next = null;
+this.consumer = null;
+this.interested = false;
+this.securityContext = null;
+this.secure = false;
+Clazz.instantialize (this, arguments);
+}, jssun.awt.image, "ImageConsumerQueue");
+c$.removeConsumer = Clazz.defineMethod (c$, "removeConsumer", 
+function (cqbase, ic, stillinterested) {
+var cqprev = null;
+for (var cq = cqbase; cq != null; cq = cq.next) {
+if (cq.consumer === ic) {
+if (cqprev == null) {
+cqbase = cq.next;
+} else {
+cqprev.next = cq.next;
+}cq.interested = stillinterested;
+break;
+}cqprev = cq;
+}
+return cqbase;
+}, "jssun.awt.image.ImageConsumerQueue,java.awt.image.ImageConsumer,~B");
+c$.isConsumer = Clazz.defineMethod (c$, "isConsumer", 
+function (cqbase, ic) {
+for (var cq = cqbase; cq != null; cq = cq.next) {
+if (cq.consumer === ic) {
+return true;
+}}
+return false;
+}, "jssun.awt.image.ImageConsumerQueue,java.awt.image.ImageConsumer");
+Clazz.makeConstructor (c$, 
+function (src, ic) {
+this.consumer = ic;
+this.interested = true;
+this.secure = true;
+}, "jssun.awt.image.InputStreamImageSource,java.awt.image.ImageConsumer");
+Clazz.overrideMethod (c$, "toString", 
+function () {
+return ("[" + this.consumer + ", " + (this.interested ? "" : "not ") + "interested" + (this.securityContext != null ? ", " + this.securityContext : "") + "]");
+});