Package org.openbel.framework.common.record

Examples of org.openbel.framework.common.record.StringColumn


        this.test.mocksize = 16;

        columns = new Column[2];
        hashColumn = nonNullLongColumn();
        columns[0] = hashColumn;
        nullColumn = new StringColumn(10, true);
        columns[1] = nullColumn;
        this.nullTest = new MockRecordFile(nullTest, columns);
        this.nullTest.mocksize = 8 + columns[1].size;
        random = new Random(currentTimeMillis());
    }
View Full Code Here

TOP

Related Classes of org.openbel.framework.common.record.StringColumn

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.