JAL-3438 spotless for 2.11.2.0
[jalview.git] / src / org / json / simple / parser / ContainerFactory.java
index 0bb7baf..33f91cf 100644 (file)
@@ -6,18 +6,22 @@ import java.util.Map;
 /**
  * Container factory for creating containers for JSON object and JSON array.
  * 
- * @see org.json.simple.parser.JSONParser#parse(java.io.Reader, ContainerFactory)
+ * @see org.json.simple.parser.JSONParser#parse(java.io.Reader,
+ *      ContainerFactory)
  * 
  * @author FangYidong<fangyidong@yahoo.com.cn>
  */
-public interface ContainerFactory {
-       /**
-        * @return A Map instance to store JSON object, or null if you want to use org.json.simple.JSONObject.
-        */
-       Map createObjectContainer();
-       
-       /**
-        * @return A List instance to store JSON array, or null if you want to use org.json.simple.JSONArray. 
-        */
-       List creatArrayContainer();
+public interface ContainerFactory
+{
+  /**
+   * @return A Map instance to store JSON object, or null if you want to use
+   *         org.json.simple.JSONObject.
+   */
+  Map createObjectContainer();
+
+  /**
+   * @return A List instance to store JSON array, or null if you want to use
+   *         org.json.simple.JSONArray.
+   */
+  List creatArrayContainer();
 }