Examples of StringColumn


Examples of org.cfcc.colfile.StringColumn

  private static final int ZIP_LEN = 5;
    StringColumn zip;

    public Address(UniSession s) {
        super(s, "ADDRESS");
        zip = new StringColumn(this, 1);
    }
View Full Code Here

Examples of org.cfcc.colfile.StringColumn

     * @param filename the UniData name of the parameter file
     */
    public LocalParams(UniSession s, String filename) {
        super(s, filename);
        if (filename.equals("PERSON")) {
            question = new StringColumn(this, LOC_USER4);
            answer = new StringColumn(this, LOC_USER5);
            password = null;
        } else {
            question = new StringColumn(this, LOC_X810_P_QUESTION);
            answer = new StringColumn(this, LOC_X810_P_ANSWER);
            password = new StringColumn(this, LOC_X810_P_PASSWD);
        }
    }
View Full Code Here

Examples of org.cfcc.colfile.StringColumn

     * Class constructor to initialze the fields and save the database connection.
     * @param s a current UniObjects session object
     */
    public Person(UniSession s) {
        super(s, "PERSON");
        pref_addr = new StringColumn(this, 6);
        ssn = new StringColumn(this, 8);
        birth_date = new StringColumn(this, 14, "D4/");
        where_used = new ListColumn(this, 31);
        last_name = new StringColumn(this, 1);
        first_name = new StringColumn(this, 3);
    }
View Full Code Here

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
Copyright © 2018 www.massapi.com. 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.