JAL-3746 apply copyright to source
[jalview.git] / src / jalview / javascript / json / JSON.java
index dff4963..30e3336 100644 (file)
@@ -1,3 +1,23 @@
+/*
+ * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
+ * Copyright (C) $$Year-Rel$$ The Jalview Authors
+ * 
+ * This file is part of Jalview.
+ * 
+ * Jalview is free software: you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License 
+ * as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *  
+ * Jalview is distributed in the hope that it will be useful, but 
+ * WITHOUT ANY WARRANTY; without even the implied warranty 
+ * of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
+ * PURPOSE.  See the GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with Jalview.  If not, see <http://www.gnu.org/licenses/>.
+ * The Jalview Authors are detailed in the 'AUTHORS' file.
+ */
 package jalview.javascript.json;
 
 import java.io.BufferedReader;
@@ -19,28 +39,36 @@ import java.net.URL;
  * @author hansonr Bob Hanson St. Olaf College 1/24/2019
  *
  */
-public class JSON {
-
-       /**
-        * A simple encoding of sequential key/value pairs for a jQuery.ajax call. If
-        * the first key is "url" and the second is an object, then the ajax object is
-        * attached to that url as well, just for transport purposes within the system.
-        * 
-        * @param keyValues assumed to be simple String,Object pairs. String objects
-        *                  will be surrounded by double quotes.
-        */
-       @SuppressWarnings("static-access")
-       public static Object setAjax(Object... keyValues) {
-               return /** @j2sNative swingjs.JSUtil.setAjax$OA(keyValues) || */null;
-       }
-
-       public static void setAjax(URL url) {
-               /** @j2sNative swingjs.JSUtil.setAjax$O(url) */;
-       }
-
-       public static BufferedReader getJSONReader(InputStream is) {
-               return /** @j2sNative swingjs.JSUtil.getJSONReader$O(is) || */null;
-       }
+public class JSON
+{
+
+  /**
+   * A simple encoding of sequential key/value pairs for a jQuery.ajax call. If
+   * the first key is "url" and the second is an object, then the ajax object is
+   * attached to that url as well, just for transport purposes within the
+   * system.
+   * 
+   * @param keyValues
+   *          assumed to be simple String,Object pairs. String objects will be
+   *          surrounded by double quotes.
+   */
+  @SuppressWarnings("static-access")
+  public static Object setAjax(Object... keyValues)
+  {
+    return /** @j2sNative swingjs.JSUtil.setAjax$OA(keyValues) || */
+    null;
+  }
+
+  public static void setAjax(URL url)
+  {
+    /** @j2sNative swingjs.JSUtil.setAjax$java_net_URL(url); */
+  }
+
+  public static BufferedReader getJSONReader(InputStream is)
+  {
+    return /** @j2sNative swingjs.JSUtil.getJSONReader$O(is) || */
+    null;
+  }
 
   /**
    * 
@@ -54,8 +82,10 @@ public class JSON {
     null;
   }
 
-       public static String stringify(Object obj) {
-               return /** @j2sNative swingjs.JSUtil.stringifyJSON$O(obj) || */null;
-       }
+  public static String stringify(Object obj)
+  {
+    return /** @j2sNative swingjs.JSUtil.stringifyJSON$O(obj) || */
+    null;
+  }
 
 }