Mercurial > hg > orthanc-imagej
view org/json/simple/parser/ContainerFactory.java @ 16:34cb63c05748
upgrade to year 2018
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Tue, 02 Jan 2018 09:49:01 +0100 |
parents | 1092b2dca366 |
children |
line wrap: on
line source
package org.json.simple.parser; import java.util.List; 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) * * @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(); }