Package dovetaildb.util

Examples of dovetaildb.util.LiteralResultList


    /**
     * Construct an empty JSONArray.
     */
    public JSONArray() {
        this.myArrayList = new LiteralResultList();
    }
View Full Code Here


     * Construct a JSONArray from a Collection.
     * @param collection     A Collection.
     */
    public JSONArray(Collection collection) {
        this.myArrayList = (collection == null) ?
          new LiteralResultList() :
          new LiteralResultList(collection);
    }
View Full Code Here

TOP

Related Classes of dovetaildb.util.LiteralResultList

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.