Package krati.core.array.entry

Examples of krati.core.array.entry.EntryShortFactory


     *            the home directory of this array
     * @throws Exception
     *             if this array cannot be created.
     */
    public StaticShortArray(int length, int entrySize, int maxEntries, File homeDirectory) throws Exception {
        super(length, 2 /* elementSize */, entrySize, maxEntries, homeDirectory, new EntryShortFactory());
    }
View Full Code Here


    private final static Logger _log = Logger.getLogger(DynamicShortArray.class);
    private MemoryShortArray _internalArray;
   
    public DynamicShortArray(int entrySize, int maxEntries, File directory) throws Exception {
        super(_subArraySize /* initial array length and subArray length */,
              2, entrySize, maxEntries, directory, new EntryShortFactory());
    }
View Full Code Here

TOP

Related Classes of krati.core.array.entry.EntryShortFactory

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.